2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
2019-10-18 16:47:54 -05:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2014-12-05 01:02:36 -06:00
|
|
|
// compile-flags: --test
|
|
|
|
#[test]
|
2015-01-31 17:08:25 -06:00
|
|
|
#[should_panic(expected = "foo")]
|
2015-03-15 15:00:41 -05:00
|
|
|
pub fn test_foo() {
|
2014-12-05 01:02:36 -06:00
|
|
|
panic!("foo bar")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2015-01-31 17:08:25 -06:00
|
|
|
#[should_panic(expected = "foo")]
|
2015-03-15 15:00:41 -05:00
|
|
|
pub fn test_foo_dynamic() {
|
2014-12-05 01:02:36 -06:00
|
|
|
panic!("{} bar", "foo")
|
|
|
|
}
|