blob: 1b71ead55b077d15e943b2d5e2cd1d297c22bfd3 [file] [log] [blame] [edit]
//@ compile-flags: --test -Zpanic-abort-tests
//@ run-flags: --test-threads=1
//@ check-run-results
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
//@ needs-threads
//@ run-pass
#[test]
fn test_ok() {
let _a = true;
}
#[test]
#[should_panic]
fn test_panic() {
panic!();
}
#[test]
#[ignore = "msg"]
fn test_no_run() {
loop {
println!("Hello, world");
}
}
fn main() {}