We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c85af1c commit 586d87aCopy full SHA for 586d87a
1 file changed
library/std/src/fs/tests.rs
@@ -2334,6 +2334,9 @@ fn test_fs_set_times_follows_symlink() {
2334
use crate::os::windows::fs::FileTimesExt;
2335
2336
let tmp = tmpdir();
2337
+ if !got_symlink_permission(&tmp) {
2338
+ return;
2339
+ }
2340
2341
// Create a target file
2342
let target = tmp.join("target");
@@ -2432,6 +2435,9 @@ fn test_fs_set_times_nofollow() {
2432
2435
2433
2436
2434
2437
2438
2439
2440
2441
2442
// Create a target file and a symlink to it
2443
0 commit comments