diff --git a/cmake/org.eclipse.cdt.cmake.is.core.ui/META-INF/MANIFEST.MF b/cmake/org.eclipse.cdt.cmake.is.core.ui/META-INF/MANIFEST.MF
index 321c1f55703..77cbdb86287 100644
--- a/cmake/org.eclipse.cdt.cmake.is.core.ui/META-INF/MANIFEST.MF
+++ b/cmake/org.eclipse.cdt.cmake.is.core.ui/META-INF/MANIFEST.MF
@@ -11,5 +11,4 @@ Require-Bundle: org.eclipse.core.runtime,
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Automatic-Module-Name: org.eclipse.cdt.cmake.is.core.ui
Bundle-ActivationPolicy: lazy
-Import-Package: org.eclipse.cdt.core.options,
- org.eclipse.e4.core.contexts
+Import-Package: org.eclipse.e4.core.contexts
diff --git a/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/BaseOptionTest.java b/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/BaseOptionTest.java
deleted file mode 100644
index 273f552caae..00000000000
--- a/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/BaseOptionTest.java
+++ /dev/null
@@ -1,58 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 ArSysOp and others.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Alexander Fedorov - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.core.internal.tests;
-
-import static org.junit.Assert.assertEquals;
-
-import org.eclipse.cdt.core.options.BaseOption;
-import org.junit.Test;
-
-public class BaseOptionTest {
-
- @Test
- public void testBaseOption() {
- BaseOption option = new BaseOption<>(String.class, "identifier", "default", "name", "description");
- assertEquals("identifier", option.identifer());
- assertEquals("default", option.defaultValue());
- assertEquals("name", option.name());
- assertEquals("description", option.description());
- assertEquals(String.class, option.valueClass());
- }
-
- @Test(expected = NullPointerException.class)
- public void testBaseOptionNullValueType() {
- new BaseOption<>(null, "identifier", "default", "name", "description");
- }
-
- @Test(expected = NullPointerException.class)
- public void testBaseOptionNullIdentifier() {
- new BaseOption<>(Object.class, null, "default", "name", "description");
- }
-
- @Test(expected = NullPointerException.class)
- public void testBaseOptionNullDefaultValue() {
- new BaseOption<>(Object.class, "identifier", null, "name", "description");
- }
-
- @Test(expected = NullPointerException.class)
- public void testBaseOptionNullName() {
- new BaseOption<>(Object.class, "identifier", "default", null, "description");
- }
-
- @Test(expected = NullPointerException.class)
- public void testBaseOptionNullDescription() {
- new BaseOption<>(Object.class, "identifier", "default", "name", null);
- }
-
-}
diff --git a/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/OsgiPreferenceStorageTest.java b/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/OsgiPreferenceStorageTest.java
deleted file mode 100644
index 40c488ae898..00000000000
--- a/core/org.eclipse.cdt.core.tests/misc/org/eclipse/cdt/core/internal/tests/OsgiPreferenceStorageTest.java
+++ /dev/null
@@ -1,195 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 ArSysOp and others.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Alexander Fedorov - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.core.internal.tests;
-
-import static org.junit.Assert.assertArrayEquals;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
-
-import org.eclipse.cdt.core.options.BaseOption;
-import org.eclipse.cdt.core.options.OsgiPreferenceStorage;
-import org.junit.Test;
-import org.osgi.service.prefs.Preferences;
-
-public class OsgiPreferenceStorageTest {
-
- private final BaseOption
+
+ See Bug 565154.
+
+
Future Deletions