Skip to content

Commit 8f85993

Browse files
committed
Disable test_fcntl_open on MacOS
It was disabled on Windows in emscripten-core#23241 but fails on MacOS too.
1 parent 3d4df5b commit 8f85993

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from tools.shared import PIPE
2121
from tools.shared import EMCC, EMAR, FILE_PACKAGER
22-
from tools.utils import WINDOWS, MACOS, write_file, delete_file
22+
from tools.utils import WINDOWS, MACOS, LINUX, write_file, delete_file
2323
from tools import shared, building, config, utils, webassembly
2424
import common
2525
from common import RunnerCore, path_from_root, requires_native_clang, test_file, create_file
@@ -5546,7 +5546,7 @@ def test_fcntl(self):
55465546
@also_with_nodefs_both
55475547
@crossplatform
55485548
def test_fcntl_open(self):
5549-
if '-DNODERAWFS' in self.emcc_args and WINDOWS:
5549+
if '-DNODERAWFS' in self.emcc_args and not LINUX:
55505550
self.skipTest('currently failing under windows and noderawfs')
55515551
self.do_run_in_out_file_test('fcntl/test_fcntl_open.c')
55525552

0 commit comments

Comments
 (0)