Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-07-22 21:28:14 +0000
committerAlexander Kurtakov2020-07-22 21:28:14 +0000
commit55b9188a02ee2d4efc373867d07e830678e93e4a (patch)
tree8e0ded8cbdec4168cf2f0a0a70deaa79f48ad378 /bundles
parent2b4d984a2c6e848dc45f4ea3a5e915709c2a16d9 (diff)
downloadrt.equinox.bundles-55b9188a02ee2d4efc373867d07e830678e93e4a.tar.gz
rt.equinox.bundles-55b9188a02ee2d4efc373867d07e830678e93e4a.tar.xz
rt.equinox.bundles-55b9188a02ee2d4efc373867d07e830678e93e4a.zip
Specifies suites to run as otherwise Tycho discovers both Test and Tests thus executing tests multiple times and tests are not ready for that. Change-Id: Ib88d7bf75288ac84fdd7830931043ce0e34bbe01 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.common.tests/pom.xml3
-rw-r--r--bundles/org.eclipse.equinox.ds.tests/pom.xml3
2 files changed, 6 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.common.tests/pom.xml b/bundles/org.eclipse.equinox.common.tests/pom.xml
index f92033180..d5a68d1ee 100644
--- a/bundles/org.eclipse.equinox.common.tests/pom.xml
+++ b/bundles/org.eclipse.equinox.common.tests/pom.xml
@@ -21,4 +21,7 @@
<artifactId>org.eclipse.equinox.common.tests</artifactId>
<version>3.13.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <testClass>org.eclipse.equinox.common.tests.AllTests</testClass>
+ </properties>
</project>
diff --git a/bundles/org.eclipse.equinox.ds.tests/pom.xml b/bundles/org.eclipse.equinox.ds.tests/pom.xml
index d5d050153..53a9d46ee 100644
--- a/bundles/org.eclipse.equinox.ds.tests/pom.xml
+++ b/bundles/org.eclipse.equinox.ds.tests/pom.xml
@@ -21,4 +21,7 @@
<artifactId>org.eclipse.equinox.ds.tests</artifactId>
<version>1.5.700-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <testClass>org.eclipse.equinox.ds.tests.AllTests</testClass>
+ </properties>
</project>

Back to the top