Closed
Description
Given the simple library:
#[cfg(test)]
mod tests {
#[test]
fn failed() {
assert_eq!(1, 2);
}
}
and then running
RUST_BACKTRACE=full MIRIFLAGS="-Zmiri-disable-isolation" cargo +nightly miri test
the output results in:
Finished test [unoptimized + debuginfo] target(s) in 0.00s
Running unittests (target/x86_64-unknown-linux-gnu/debug/deps/test_miri-72fa64ca114eaddd)
running 1 test
test tests::failed ... FAILED
failures:
and then just infinitely hangs.