-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Disable test_unistd_unlink_wasmfs_rawfs on mac #23856
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
Conversation
I don't know if it's ever worked but we aren't testing it currently (I am planning to move Chromium CI's core2 tests from windows to mac) |
@@ -5989,11 +5989,11 @@ def test_unistd_sysconf_phys_pages(self): | |||
def test_unistd_unlink(self): | |||
# symlinks on node.js on non-linux behave differently (e.g. on Windows they require administrative privileges) | |||
# so skip testing those bits on that combination. | |||
if any([arg in self.emcc_args for arg in ('-DNODEFS', '-DNODERAWFS')]) and MACOS: | |||
self.skipTest('only tested on linux') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add @crossplatform
so that it would fail without this change in our CI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think can you elide the square brackets here.
Also, I think it might be easier to read if MACOS
came before the any statement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe, but it's a little bit silly to add @crossplatform
to a test that only works on one platform?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(this will fail on Chromium CI without the change, that's how I noticed it)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right.. I just want to make sure we could also get the same failure here.
We can then work to remove the skipping part over time (perhaps).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Ping? |
No description provided.