Skip to content

Commit 13c2eac

Browse files
trancexpressiloveeclipse
authored andcommitted
Disable test on Windows and Mac, until CI environment is fixed
Fixes: #843
1 parent abeab58 commit 13c2eac

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/core/MultiReleaseLaunchTests.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
*******************************************************************************/
1414
package org.eclipse.jdt.debug.tests.core;
1515

16+
import static org.junit.Assume.assumeTrue;
17+
1618
import java.io.File;
1719
import java.io.StringReader;
1820
import java.util.ArrayList;
@@ -25,6 +27,7 @@
2527
import java.util.UUID;
2628

2729
import org.eclipse.core.runtime.NullProgressMonitor;
30+
import org.eclipse.core.runtime.Platform;
2831
import org.eclipse.debug.core.DebugPlugin;
2932
import org.eclipse.debug.core.ILaunchConfiguration;
3033
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
@@ -112,6 +115,7 @@ protected IJavaProject getProjectContext() {
112115
}
113116

114117
public void testMultiReleaseLaunch() throws Exception {
118+
assumeTrue("Not on Linux", Platform.OS.isLinux());
115119
ILaunchConfiguration config = getLaunchConfiguration("p.Main");
116120
Properties result = launchAndReadResult(config, 11);
117121
assertTrue("Was not launched with a proper Java installation " + result, JAVA_11.matches(result.getProperty("Java")));

0 commit comments

Comments
 (0)