Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable NODERAWFS tests on Mac #6121

Closed
2 changes: 1 addition & 1 deletion tests/test_core.py
Expand Up @@ -4787,7 +4787,7 @@ def test_unistd_unlink(self):
if self.is_windows() and fs == 'NODEFS': Building.COMPILER_TEST_OPTS += ['-DNO_SYMLINK=1']
self.do_run(src, 'success', force_c=True, js_engines=[NODE_JS])
# Several differences/bugs on Windows including https://github.com/nodejs/node/issues/18014
if not self.is_windows():
if not self.is_macos() and not self.is_windows():
Building.COMPILER_TEST_OPTS = orig_compiler_opts + ['-DNODERAWFS']
if not os.geteuid(): # 0 if root
Building.COMPILER_TEST_OPTS += ['-DSKIP_ACCESS_TESTS']
Expand Down