Skip to content

Commit 9ca8a0e

Browse files
authored
Merge pull request #65955 from compnerd/denied
tests: Fix module loading prefer-serialized test failure on Windows
2 parents cd78e8b + d0ba4ce commit 9ca8a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ModuleInterface/Inputs/make-unreadable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
for path in sys.argv[1:]:
3232
subprocess.call(['icacls', path, '/deny',
33-
'{}:(R)'.format(user_name)])
33+
'{}:(RD)'.format(user_name)])
3434
else:
3535
for path in sys.argv[1:]:
3636
subprocess.call(['chmod', 'a-r', path])

0 commit comments

Comments
 (0)