Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-05-26 12:25:35 +0000
committerThomas Watson2017-05-26 12:25:54 +0000
commit7f2fb3c85993a5aa3e61ac0dbb7dd1ed81225966 (patch)
tree13e7bed18174df89c24d6fe5886cfed48e1dd225
parentc17491aadc3abeb0c5eca6f9490c4750b2d768bc (diff)
downloadrt.equinox.p2-7f2fb3c85993a5aa3e61ac0dbb7dd1ed81225966.tar.gz
rt.equinox.p2-7f2fb3c85993a5aa3e61ac0dbb7dd1ed81225966.tar.xz
rt.equinox.p2-7f2fb3c85993a5aa3e61ac0dbb7dd1ed81225966.zip
Change-Id: I307cd2f51d5e4f1782eac3f995a4f2067b50a010 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AllTests.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AllTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AllTests.java
index a3fe6af53..938d6cbb5 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AllTests.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AllTests.java
@@ -12,6 +12,7 @@
package org.eclipse.equinox.p2.tests.reconciler.dropins;
import junit.framework.*;
+import org.eclipse.equinox.p2.tests.sharedinstall.AbstractSharedInstallTest;
/**
* To run the reconciler tests, you must perform some manual setup steps:
@@ -29,7 +30,9 @@ public class AllTests extends TestCase {
suite.addTest(FeaturePatchTest.suite());
suite.addTest(SharedInstallTests.suite());
suite.addTest(SharedInstallTestsProfileSpoofEnabled.suite());
- suite.addTest(SharedInstallTestsProfileSpoofEnabledConfigured.suite());
+ if (!AbstractSharedInstallTest.WINDOWS) {
+ suite.addTest(SharedInstallTestsProfileSpoofEnabledConfigured.suite());
+ }
suite.addTest(Bug362692.suite());
return suite;
}

Back to the top