We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4548370 commit b39b874Copy full SHA for b39b874
prj/test/functional/topics/src/main/java/topics/TopicsRecoveryTests.java
@@ -58,6 +58,7 @@
58
59
import org.junit.After;
60
import org.junit.AfterClass;
61
+import org.junit.Assume;
62
import org.junit.Before;
63
import org.junit.BeforeClass;
64
import org.junit.ClassRule;
@@ -92,6 +93,9 @@ public class TopicsRecoveryTests
92
93
@BeforeClass
94
public static void setup() throws Exception
95
{
96
+ String sOS = System.getProperty("os.name", "unknown");
97
+ Assume.assumeFalse("Skipping test on Windows", sOS.toLowerCase().contains("windows"));
98
+
99
InetAddress localHost = InetAddressHelper.getLocalHost();
100
System.setProperty(Logging.PROPERTY_LEVEL, "8");
101
System.setProperty(CacheConfig.PROPERTY, CACHE_CONFIG);
0 commit comments