Skip to content

Commit b43aa96

Browse files
committed
Print failure message on all tests that should panic, but don't
This already happens with should_panic tests without an expected message. This commit fixes should_panic tests with an expected message to have the same behavior.
1 parent 7cf2056 commit b43aa96

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

library/test/src/test_result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub fn calc_result<'a>(
6363
))
6464
}
6565
}
66-
(&ShouldPanic::Yes, Ok(())) => {
66+
(&ShouldPanic::Yes, Ok(())) | (&ShouldPanic::YesWithMessage(_), Ok(())) => {
6767
TestResult::TrFailedMsg("test did not panic as expected".to_string())
6868
}
6969
_ if desc.allow_fail => TestResult::TrAllowedFail,

library/test/src/tests.rs

+24-15
Original file line numberDiff line numberDiff line change
@@ -228,21 +228,30 @@ fn test_should_panic_non_string_message_type() {
228228
#[test]
229229
#[cfg(not(target_os = "emscripten"))]
230230
fn test_should_panic_but_succeeds() {
231-
fn f() {}
232-
let desc = TestDescAndFn {
233-
desc: TestDesc {
234-
name: StaticTestName("whatever"),
235-
ignore: false,
236-
should_panic: ShouldPanic::Yes,
237-
allow_fail: false,
238-
test_type: TestType::Unknown,
239-
},
240-
testfn: DynTestFn(Box::new(f)),
241-
};
242-
let (tx, rx) = channel();
243-
run_test(&TestOpts::new(), false, desc, RunStrategy::InProcess, tx, Concurrent::No);
244-
let result = rx.recv().unwrap().result;
245-
assert_eq!(result, TrFailedMsg("test did not panic as expected".to_string()));
231+
let should_panic_variants = [ShouldPanic::Yes, ShouldPanic::YesWithMessage("error message")];
232+
233+
for &should_panic in should_panic_variants.iter() {
234+
fn f() {}
235+
let desc = TestDescAndFn {
236+
desc: TestDesc {
237+
name: StaticTestName("whatever"),
238+
ignore: false,
239+
should_panic,
240+
allow_fail: false,
241+
test_type: TestType::Unknown,
242+
},
243+
testfn: DynTestFn(Box::new(f)),
244+
};
245+
let (tx, rx) = channel();
246+
run_test(&TestOpts::new(), false, desc, RunStrategy::InProcess, tx, Concurrent::No);
247+
let result = rx.recv().unwrap().result;
248+
assert_eq!(
249+
result,
250+
TrFailedMsg("test did not panic as expected".to_string()),
251+
"should_panic == {:?}",
252+
should_panic
253+
);
254+
}
246255
}
247256

248257
fn report_time_test_template(report_time: bool) -> Option<TestExecTime> {

0 commit comments

Comments
 (0)