Skip to content

Commit 1a0f3f6

Browse files
committed
Skip interpreter tests on Windows
1 parent 3d7d8c5 commit 1a0f3f6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/c/run_tests.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,10 @@ def test_coq(name):
229229
xml += test_c('optimized C++', '-O2', '-O', True, compiler='c++', actually_cpp=True)
230230

231231
if 'interpreter' in targets:
232-
xml += test_interpreter('interpreter')
232+
if os.name == 'nt':
233+
print('Skipping interpreter tests because the interpreter is not supported on Windows')
234+
else:
235+
xml += test_interpreter('interpreter')
233236

234237
if 'ocaml' in targets:
235238
xml += test_ocaml('OCaml')

0 commit comments

Comments
 (0)