We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3899dce + e9138ab commit e10d9d3Copy full SHA for e10d9d3
tests/run-pass/file_manipulation.rs renamed to tests/run-pass/fs.rs
@@ -5,7 +5,7 @@ use std::fs::{File, remove_file};
5
use std::io::{Read, Write};
6
7
fn main() {
8
- let path = "./tests/hello.txt";
+ let path = "miri_test_fs.txt";
9
let bytes = b"Hello, World!\n";
10
// Test creating, writing and closing a file (closing is tested when `file` is dropped).
11
let mut file = File::create(path).unwrap();
0 commit comments