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 4858c3f commit f9a75a0Copy full SHA for f9a75a0
src/tools/miri/tests/pass-dep/libc/libc-fs-with-isolation.rs
@@ -11,6 +11,10 @@ fn main() {
11
assert!(libc::fcntl(1, libc::F_DUPFD, 0) >= 0);
12
}
13
14
+ // Although `readlink` and `stat` require disable-isolation mode
15
+ // to properly run, they are tested with isolation mode on to check the error emitted
16
+ // with `-Zmiri-isolation-error=warn-nobacktrace`.
17
+
18
// test `readlink`
19
let mut buf = vec![0; "foo_link.txt".len() + 1];
20
unsafe {
0 commit comments