blob: ce505de69a22d691048d68d4fdcf8f6e86d6d904 [file] [log] [blame]
#![cfg(windows)]
/// Attempting to delete a running binary should return an error on Windows.
#[test]
#[cfg_attr(miri, ignore)] // `remove_file` does not work in Miri on Windows
fn win_delete_self() {
let path = std::env::current_exe().unwrap();
assert!(std::fs::remove_file(path).is_err());
}