Skip to content

Commit

Permalink
py2llvm: skip test_is_prime unit test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fallen committed Aug 26, 2015
1 parent 8aec02d commit 977df70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions artiq/test/py2llvm.py
Expand Up @@ -267,6 +267,7 @@ def test_float_mul(self):
def test_float_div(self):
self._test_float_arith(3)

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

0 comments on commit 977df70

Please sign in to comment.