-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[WasmFS] Skip mounting special files under NODERAWFS #26607
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5553,6 +5553,8 @@ def test_fsync(self, args): | |||||||||||||||||||
| def test_fs_dev_random(self): | ||||||||||||||||||||
| if WINDOWS and self.get_setting('NODERAWFS'): | ||||||||||||||||||||
| self.skipTest('Crashes on Windows and NodeFS') | ||||||||||||||||||||
| if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): | ||||||||||||||||||||
| self.skipTest('https://github.com/emscripten-core/emscripten/issues/24830') | ||||||||||||||||||||
| self.do_runf('fs/test_fs_dev_random.c', 'success') | ||||||||||||||||||||
|
|
||||||||||||||||||||
| @parameterized({ | ||||||||||||||||||||
|
|
@@ -13256,6 +13258,8 @@ def test_unistd_chown(self): | |||||||||||||||||||
|
|
||||||||||||||||||||
| @wasmfs_all_backends | ||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why remove this? Does
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we just skip under
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I re-added the See for details: emscripten/test/wasmfs/wasmfs_getdents.out Lines 51 to 59 in 34f6bcf
|
||||||||||||||||||||
| def test_wasmfs_getdents(self): | ||||||||||||||||||||
| if self.get_setting('NODERAWFS'): | ||||||||||||||||||||
| self.skipTest('test expectations assumes /dev is virtualized') | ||||||||||||||||||||
| # Run only in WASMFS for now. | ||||||||||||||||||||
| self.set_setting('FORCE_FILESYSTEM') | ||||||||||||||||||||
| self.do_run_in_out_file_test('wasmfs/wasmfs_getdents.c') | ||||||||||||||||||||
|
|
||||||||||||||||||||
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 was thinking maybe
shouldPopulateRoot, but maybe your name is more explicit?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 function name was mentioned in comment #24733 (comment). But I'd like
shouldPopulateRootas well.