Skip to content

Commit 4cbcb26

Browse files
dschuffkripken
andauthored
Disable test_fcntl_open on MacOS (#23244)
It was disabled on Windows in #23241 but fails on MacOS too. --------- Co-authored-by: Alon Zakai <[email protected]>
1 parent 06f343d commit 4cbcb26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_core.py

Lines changed: 3 additions & 3 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,8 +5546,8 @@ 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:
5550-
self.skipTest('currently failing under windows and noderawfs')
5549+
if '-DNODERAWFS' in self.emcc_args and not LINUX:
5550+
self.skipTest('noderawfs fails here under non-linux')
55515551
self.do_run_in_out_file_test('fcntl/test_fcntl_open.c')
55525552

55535553
@also_with_wasm_bigint

0 commit comments

Comments
 (0)