Skip to content

Commit 977df70

Browse files
committedAug 26, 2015
py2llvm: skip test_is_prime unit test on Windows
see http://irclog.whitequark.org/m-labs/2015-08-26#13821771;
1 parent 8aec02d commit 977df70

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

Diff for: ‎artiq/test/py2llvm.py

+1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ def test_float_mul(self):
267267
def test_float_div(self):
268268
self._test_float_arith(3)
269269

270+
@unittest.skipIf(os.name == "nt", "This test is known to fail on Windows")
270271
def test_is_prime(self):
271272
is_prime_c = CompiledFunction(is_prime, {"x": base_types.VInt()})
272273
for i in range(200):

0 commit comments

Comments
 (0)
Please sign in to comment.