rust/tests/run-make/const-prop-lint/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
476 B
Rust
Raw Normal View History

// Tests that const prop lints interrupting codegen don't leave `.o` files around.
use run_make_support::{cwd, fs_wrapper, rustc};
fn main() {
rustc().input("input.rs").run_fail().assert_exit_code(1);
for entry in fs_wrapper::read_dir(cwd()) {
let entry = entry.unwrap();
let path = entry.path();
if path.is_file() && path.extension().is_some_and(|ext| ext == "o") {
panic!("there should not be `.o` files!");
}
}
}