[jbosstools-commits] JBoss Tools SVN: r43138 - in trunk/common/tests: org.jboss.tools.common.model.test and 8 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Aug 21 19:02:53 EDT 2012


Author: dgolovin
Date: 2012-08-21 19:02:53 -0400 (Tue, 21 Aug 2012)
New Revision: 43138

Modified:
   trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.model.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.mylyn.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.ui.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.validation.test/META-INF/MANIFEST.MF
   trunk/common/tests/org.jboss.tools.common.validation.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml
   trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
Log:
some tests are marked as core tests, it should save some time 

Modified: trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,16 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion> 
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
 		<artifactId>tests</artifactId>
 		<version>3.4.0-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
-	<artifactId>org.jboss.tools.common.el.core.test</artifactId> 
-	
+	<artifactId>org.jboss.tools.common.el.core.test</artifactId>
+
 	<packaging>eclipse-test-plugin</packaging>
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common.resref.core,org.jboss.tools.common.el.core</emma.instrument.bundles>
 	</properties>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>tycho-surefire-plugin</artifactId>
+				<version>${tychoVersion}</version>
+				<configuration>
+					<useUIHarness>false</useUIHarness>
+					<useUIThread>false</useUIThread>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 </project>

Modified: trunk/common/tests/org.jboss.tools.common.model.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.model.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.model.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
@@ -8,9 +9,7 @@
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
 	<artifactId>org.jboss.tools.common.model.test</artifactId>
-	
 	<packaging>eclipse-test-plugin</packaging>
-
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common,org.jboss.tools.common.model</emma.instrument.bundles>
 	</properties>

Modified: trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -8,9 +8,7 @@
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
 	<artifactId>org.jboss.tools.common.model.ui.test</artifactId>
-	
 	<packaging>eclipse-test-plugin</packaging>
-
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common.model,org.jboss.tools.common.model.ui,org.jboss.tools.common.text.ext,org.jboss.tools.common.text.xml</emma.instrument.bundles>
 	</properties>

Modified: trunk/common/tests/org.jboss.tools.common.mylyn.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.mylyn.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.mylyn.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
@@ -9,11 +10,9 @@
 	<groupId>org.jboss.tools.common.tests</groupId>
 	<artifactId>org.jboss.tools.common.mylyn.test</artifactId>
 	<packaging>eclipse-test-plugin</packaging>
-
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common.mylyn</emma.instrument.bundles>
 	</properties>
-	
 	<build>
 		<plugins>
 			<plugin>

Modified: trunk/common/tests/org.jboss.tools.common.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,16 +1,29 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion> 
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
 		<artifactId>tests</artifactId>
 		<version>3.4.0-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
-	<artifactId>org.jboss.tools.common.test</artifactId> 
-	
+	<artifactId>org.jboss.tools.common.test</artifactId>
 	<packaging>eclipse-test-plugin</packaging>
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common</emma.instrument.bundles>
 	</properties>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>tycho-surefire-plugin</artifactId>
+				<version>${tychoVersion}</version>
+				<configuration>
+					<useUIHarness>false</useUIHarness>
+					<useUIThread>false</useUIThread>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 </project>

Modified: trunk/common/tests/org.jboss.tools.common.ui.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.ui.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.ui.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
@@ -9,7 +10,6 @@
 	<groupId>org.jboss.tools.common.tests</groupId>
 	<artifactId>org.jboss.tools.common.ui.test</artifactId>
 	<packaging>eclipse-test-plugin</packaging>
-	
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common.ui,org.jboss.tools.common,org.jboss.tools.common.validation,org.jboss.tools.common.el.core,org.jboss.tools.common.resref.core</emma.instrument.bundles>
 	</properties>

Modified: trunk/common/tests/org.jboss.tools.common.validation.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/tests/org.jboss.tools.common.validation.test/META-INF/MANIFEST.MF	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.validation.test/META-INF/MANIFEST.MF	2012-08-21 23:02:53 UTC (rev 43138)
@@ -16,3 +16,4 @@
  org.jboss.tools.common.base.test,
  org.eclipse.ui
 Export-Package: org.jboss.tools.common.validation.test
+Eclipse-BundleShape: dir

Modified: trunk/common/tests/org.jboss.tools.common.validation.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.validation.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.validation.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -18,14 +18,12 @@
 			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-surefire-plugin</artifactId>
+				<version>${tychoVersion}</version>
 				<configuration>
-					<product>org.jboss.tools.tests.product</product>
-					<explodedBundles>
-						<bundle>org.jboss.tools.common.validation.test</bundle>
-					</explodedBundles>
+					<useUIHarness>false</useUIHarness>
+					<useUIThread>false</useUIThread>
 				</configuration>
 			</plugin>
 		</plugins>
 	</build>
-	
 </project>

Modified: trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,16 +1,29 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion> 
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
 		<artifactId>tests</artifactId>
 		<version>3.4.0-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
-	<artifactId>org.jboss.tools.common.verification.test</artifactId> 
-	
+	<artifactId>org.jboss.tools.common.verification.test</artifactId>
 	<packaging>eclipse-test-plugin</packaging>
 	<properties>
 		<emma.instrument.bundles>org.jboss.tools.common,org.jboss.tools.common.model,org.jboss.tools.common.verification</emma.instrument.bundles>
 	</properties>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>tycho-surefire-plugin</artifactId>
+				<version>${tychoVersion}</version>
+				<configuration>
+					<useUIHarness>false</useUIHarness>
+					<useUIThread>false</useUIThread>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 </project>

Modified: trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml	2012-08-21 22:26:40 UTC (rev 43137)
+++ trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml	2012-08-21 23:02:53 UTC (rev 43138)
@@ -1,17 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion> 
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.jboss.tools.common</groupId>
 		<artifactId>tests</artifactId>
 		<version>3.4.0-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.common.tests</groupId>
-	<artifactId>org.jboss.tools.common.verification.ui.test</artifactId> 
-	
+	<artifactId>org.jboss.tools.common.verification.ui.test</artifactId>
 	<packaging>eclipse-test-plugin</packaging>
 	<properties>
 		<coverage.filter>org.jboss.tools.common.verification.ui*</coverage.filter>
 		<emma.instrument.bundles>org.jboss.tools.common,org.jboss.tools.common.model,org.jboss.tools.common.verification,org.jboss.tools.common.verification.ui</emma.instrument.bundles>
 	</properties>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>tycho-surefire-plugin</artifactId>
+				<version>${tychoVersion}</version>
+				<configuration>
+					<useUIHarness>false</useUIHarness>
+					<useUIThread>false</useUIThread>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 </project>



More information about the jbosstools-commits mailing list