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 f904d50 commit a515fdfCopy full SHA for a515fdf
java/cuvs-java/src/test/java/com/nvidia/cuvs/TieredIndexIT.java
@@ -18,6 +18,7 @@
18
import static org.junit.Assert.assertEquals;
19
import static org.junit.Assert.assertFalse;
20
import static org.junit.Assert.assertTrue;
21
+import static org.junit.Assume.assumeTrue;
22
23
import com.carrotsearch.randomizedtesting.RandomizedRunner;
24
import java.lang.invoke.MethodHandles;
@@ -39,6 +40,7 @@ public class TieredIndexIT extends CuVSTestCase {
39
40
41
@Before
42
public void setup() {
43
+ assumeTrue("not supported on " + System.getProperty("os.name"), isLinuxAmd64());
44
initializeRandom();
45
log.debug("Random context initialized for test");
46
}
0 commit comments