From 13e316d113bbe61d2129383723117cba3c3946a1 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 19 Feb 2026 16:36:31 -0800 Subject: [PATCH] Update test suite after upstream deno fixes See: #26235 Fixes: #26241 --- test/test_core.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/test_core.py b/test/test_core.py index 13c9694105560..05d4497874082 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -5895,7 +5895,6 @@ def test_fs_emptyPath(self): @crossplatform @also_with_nodefs_both @no_wasmfs('Assertion failed: open("./does-not-exist/", O_CREAT, 0777) == -1 in test_fs_enotdir.c line 20. https://github.com/emscripten-core/emscripten/issues/25035') - @no_deno('https://github.com/emscripten-core/emscripten/issues/26235') def test_fs_enotdir(self): if MACOS and '-DNODERAWFS' in self.cflags: self.skipTest('BSD libc sets a different errno') @@ -6001,7 +6000,6 @@ def test_fs_rename_on_existing(self): @no_windows("stat ino values don't match on windows") @crossplatform @no_wasmfs('Assertion failed: "a_ino == sta.st" in test_fs_readdir_ino_matches_stat_ino.c, line 58. https://github.com/emscripten-core/emscripten/issues/25035') - @no_deno('https://github.com/emscripten-core/emscripten/issues/26235') def test_fs_readdir_ino_matches_stat_ino(self): self.do_runf('fs/test_fs_readdir_ino_matches_stat_ino.c', 'success') @@ -6106,7 +6104,6 @@ def test_unistd_sysconf_phys_pages(self): @no_windows('https://github.com/emscripten-core/emscripten/issues/8882') @crossplatform @with_all_fs - @no_deno('https://github.com/emscripten-core/emscripten/issues/26241') 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.