diff --git a/tests/org.eclipse.wtp.releng.tests/src/org/eclipse/wtp/releng/tests/BuildTests.java b/tests/org.eclipse.wtp.releng.tests/src/org/eclipse/wtp/releng/tests/BuildTests.java
index 41bccd73211957a868709541bf4b78a5fd1fb061..853227c754d2a1859dfb76817e72d6a4c3065d49 100644
--- a/tests/org.eclipse.wtp.releng.tests/src/org/eclipse/wtp/releng/tests/BuildTests.java
+++ b/tests/org.eclipse.wtp.releng.tests/src/org/eclipse/wtp/releng/tests/BuildTests.java
@@ -161,7 +161,7 @@ public class BuildTests extends TestCase {
 	}
 
 
-	public void testNumberOfTOTALFeatures() {
+	public void __testNumberOfTOTALFeatures() {
 
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File featureDir = new File(installDir, "features");
@@ -175,7 +175,7 @@ public class BuildTests extends TestCase {
 
 	}
 
-	public void testNumberOfWTPFeatures() {
+	public void __testNumberOfWTPFeatures() {
 
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File featureDir = new File(installDir, "features");
@@ -184,7 +184,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less WTP features than expected: ", EXPECTED_NUMBER_OF_WTP_FEATURES, nFeatures);
 	}
 
-	public void testNumberOfWSTFeatures() {
+	public void __testNumberOfWSTFeatures() {
 
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File featureDir = new File(installDir, "features");
@@ -193,7 +193,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less WST features than expected: ", EXPECTED_NUMBER_OF_WST_FEATURES, nFeatures);
 	}
 
-	public void testNumberOfJSTFeatures() {
+	public void __testNumberOfJSTFeatures() {
 
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File featureDir = new File(installDir, "features");
@@ -202,7 +202,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less JST features than expected: ", EXPECTED_NUMBER_OF_JST_FEATURES, nFeatures);
 	}
 
-	public void testNumberOfJPTFeatures() {
+	public void __testNumberOfJPTFeatures() {
 
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File featureDir = new File(installDir, "features");
@@ -243,7 +243,7 @@ public class BuildTests extends TestCase {
 	}
 
 
-	public void testNumberOfTOTALPlugins() {
+	public void __testNumberOfTOTALPlugins() {
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File pluginDir = new File(installDir, "plugins");
 		File[] plugins = pluginDir.listFiles();
@@ -253,7 +253,7 @@ public class BuildTests extends TestCase {
 		}
 	}
 
-	public void testNumberOfWTPPlugins() {
+	public void __testNumberOfWTPPlugins() {
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File pluginDir = new File(installDir, "plugins");
 		File[] plugins = pluginDir.listFiles(wtpFilenameFilter);
@@ -261,7 +261,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less WTP plugins than expected: ", EXPECTED_NUMBER_OF_WTP_PLUGINS, nPlugins);
 	}
 
-	public void testNumberOfWSTPlugins() {
+	public void __testNumberOfWSTPlugins() {
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File pluginDir = new File(installDir, "plugins");
 		File[] plugins = pluginDir.listFiles(wstFilenameFilter);
@@ -269,7 +269,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less WST plugins than expected: ", EXPECTED_NUMBER_OF_WST_PLUGINS, nPlugins);
 	}
 
-	public void testNumberOfJSTPlugins() {
+	public void __testNumberOfJSTPlugins() {
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File pluginDir = new File(installDir, "plugins");
 		File[] plugins = pluginDir.listFiles(jstFilenameFilter);
@@ -277,7 +277,7 @@ public class BuildTests extends TestCase {
 		assertEquals("there were more or less JST plugins than expected: ", EXPECTED_NUMBER_OF_JST_PLUGINS, nPlugins);
 	}
 
-	public void testNumberOfJPTPlugins() {
+	public void __testNumberOfJPTPlugins() {
 		String installDir = Platform.getInstallLocation().getURL().getPath();
 		File pluginDir = new File(installDir, "plugins");
 		File[] plugins = pluginDir.listFiles(jptFilenameFilter);