From b6a5264545c9952c350fc6bed1d445507b79c71a Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 24 Nov 2025 13:38:27 -0800 Subject: [PATCH] Disabled test_std_filesystem_{tempdir_}wasmfs_rawfs. NFC These tests depend on being able to access arbitrary paths which doesn't currently work with NODERAWFS + WASMFS. See #18820 --- test/test_other.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_other.py b/test/test_other.py index c05eeda9ad11e..cd6026d9eb9dc 100644 --- a/test/test_other.py +++ b/test/test_other.py @@ -13685,14 +13685,14 @@ def test_fs_icase(self): @crossplatform @with_all_fs def test_std_filesystem(self): - if (WINDOWS or MACOS) and self.get_setting('NODERAWFS'): - self.skipTest('Rawfs directory removal works only on Linux') + if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): + self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths') self.do_other_test('test_std_filesystem.cpp') @crossplatform @with_all_fs def test_std_filesystem_tempdir(self): - if (WINDOWS or MACOS) and self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): + if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths') self.do_other_test('test_std_filesystem_tempdir.cpp', cflags=['-g'])