Skip to content

Commit 6ec67f9

Browse files
authored
Skip test_stat_chmod_rawfs on windows. NFC (#23018)
This test depends on separate R/W/X permission bits that windows lacks. Followup to #23004
1 parent d0a2dce commit 6ec67f9

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
@@ -5592,9 +5592,12 @@ def test_statx(self):
55925592
def test_fstatat(self):
55935593
self.do_runf('stat/test_fstatat.c', 'success')
55945594

5595+
@crossplatform
55955596
@also_with_wasmfs
55965597
@also_with_noderawfs
55975598
def test_stat_chmod(self):
5599+
if self.get_setting('NODERAWFS') and WINDOWS:
5600+
self.skipTest('mode bits work differently on windows')
55985601
if self.get_setting('WASMFS') and self.get_setting('NODERAWFS'):
55995602
self.skipTest('test requires symlink creation which currently missing from wasmfs+noderawfs')
56005603
self.do_runf('stat/test_chmod.c', 'success')

0 commit comments

Comments
 (0)