Skip to content

Commit c1878d1

Browse files
authored
Skip symlink tests on Windows (#23097)
Followup to #23072
1 parent 7342ee8 commit c1878d1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5875,13 +5875,16 @@ def test_fs_64bit(self):
58755875
self.do_runf('fs/test_64bit.c', 'success')
58765876

58775877
@requires_node
5878+
@crossplatform
58785879
@parameterized({
58795880
'': ([],),
58805881
'nodefs': (['-DNODEFS', '-lnodefs.js'],),
58815882
'noderawfs': (['-sNODERAWFS'],),
58825883
})
58835884
def test_fs_symlink_resolution(self, args):
58845885
nodefs = '-DNODEFS' in args or '-sNODERAWFS' in args
5886+
if nodefs and WINDOWS:
5887+
self.skipTest('No symlinks on Windows')
58855888
if self.get_setting('WASMFS'):
58865889
if nodefs:
58875890
self.skipTest('NODEFS in WasmFS')

0 commit comments

Comments
 (0)