Skip to content

Commit b39b874

Browse files
committed
Skip TopicsRecoveryTests on Windows
(merge main -> ce/main 107930) [git-p4: depot-paths = "//dev/coherence-ce/main/": change = 107932]
1 parent 4548370 commit b39b874

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

prj/test/functional/topics/src/main/java/topics/TopicsRecoveryTests.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858

5959
import org.junit.After;
6060
import org.junit.AfterClass;
61+
import org.junit.Assume;
6162
import org.junit.Before;
6263
import org.junit.BeforeClass;
6364
import org.junit.ClassRule;
@@ -92,6 +93,9 @@ public class TopicsRecoveryTests
9293
@BeforeClass
9394
public static void setup() throws Exception
9495
{
96+
String sOS = System.getProperty("os.name", "unknown");
97+
Assume.assumeFalse("Skipping test on Windows", sOS.toLowerCase().contains("windows"));
98+
9599
InetAddress localHost = InetAddressHelper.getLocalHost();
96100
System.setProperty(Logging.PROPERTY_LEVEL, "8");
97101
System.setProperty(CacheConfig.PROPERTY, CACHE_CONFIG);

0 commit comments

Comments
 (0)