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.
metadata_access_times
Unsupported
1 parent af0dec2 commit 0895a69Copy full SHA for 0895a69
library/std/src/fs/tests.rs
@@ -1329,7 +1329,9 @@ fn metadata_access_times() {
1329
match (a.created(), b.created()) {
1330
(Ok(t1), Ok(t2)) => assert!(t1 <= t2),
1331
(Err(e1), Err(e2))
1332
- if e1.kind() == ErrorKind::Other && e2.kind() == ErrorKind::Other => {}
+ if e1.kind() == ErrorKind::Other && e2.kind() == ErrorKind::Other
1333
+ || e1.kind() == ErrorKind::Unsupported
1334
+ && e2.kind() == ErrorKind::Unsupported => {}
1335
(a, b) => {
1336
panic!("creation time must be always supported or not supported: {:?} {:?}", a, b,)
1337
}
0 commit comments