From 2a4b853ed31eb3668e765fc06eb134ffb4cf52ff Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 25 Nov 2025 09:49:23 -0800 Subject: [PATCH] Add bug links to disabled tests from #25861. NFC --- test/test_other.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_other.py b/test/test_other.py index cd6026d9eb9dc..07f1b3f090f0a 100644 --- a/test/test_other.py +++ b/test/test_other.py @@ -13686,14 +13686,14 @@ def test_fs_icase(self): @with_all_fs def test_std_filesystem(self): if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): - self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths') + self.skipTest('https://github.com/emscripten-core/emscripten/issues/24830') self.do_other_test('test_std_filesystem.cpp') @crossplatform @with_all_fs def test_std_filesystem_tempdir(self): if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'): - self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths') + self.skipTest('https://github.com/emscripten-core/emscripten/issues/24830') self.do_other_test('test_std_filesystem_tempdir.cpp', cflags=['-g']) def test_strict_js_closure(self):