Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions tests/run-pass/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// compile-flags: -Zmiri-disable-isolation

use std::fs::{File, remove_file};
use std::io::{Read, Write};
use std::io::{Read, Write, ErrorKind};

fn main() {
let path = std::env::temp_dir().join("miri_test_fs.txt");
Expand All @@ -23,8 +23,10 @@ fn main() {
assert_eq!(bytes, contents.as_slice());
// Removing file should succeed
remove_file(&path).unwrap();
// Opening non-existing file should fail
assert!(File::open(&path).is_err());
// Removing non-existing file should fail
assert!(remove_file(&path).is_err());

// The two following tests also check that the `__errno_location()` shim is working properly.
// Opening a non-existing file should fail with a "not found" error.
assert_eq!(ErrorKind::NotFound, File::open(&path).unwrap_err().kind());
// Removing a non-existing file should fail with a "not found" error.
assert_eq!(ErrorKind::NotFound, remove_file(&path).unwrap_err().kind());
}