mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-12 11:42:24 +00:00
80 lines
1.5 KiB
Rust
80 lines
1.5 KiB
Rust
#[cfg(any(debug_assertions, feature = "force"))]
|
|
mod armed {
|
|
use always_assert::{always, never};
|
|
|
|
#[test]
|
|
#[should_panic = "assertion failed: 2 + 2 == 5"]
|
|
fn syntax1() {
|
|
let _: bool = always!(2 + 2 == 5);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom"]
|
|
fn syntax2() {
|
|
let _: bool = always!(2 + 2 == 5, "custom");
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom 92"]
|
|
fn syntax3() {
|
|
let _: bool = always!(2 + 2 == 5, "custom {}", 92);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "assertion failed: !(2 + 2 == 4)"]
|
|
fn syntax4() {
|
|
let _: bool = never!(2 + 2 == 4);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom"]
|
|
fn syntax5() {
|
|
let _: bool = never!(2 + 2 == 4, "custom");
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom 92"]
|
|
fn syntax6() {
|
|
let _: bool = never!(2 + 2 == 4, "custom {}", 92);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "unreachable code"]
|
|
fn syntax7() {
|
|
let () = never!();
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom"]
|
|
fn syntax8() {
|
|
let () = never!("custom");
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom"]
|
|
fn syntax9() {
|
|
let () = never!("custom");
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "custom 92"]
|
|
fn syntax10() {
|
|
let () = never!("custom {}", 92);
|
|
}
|
|
}
|
|
|
|
#[cfg(all(not(debug_assertions), not(feature = "force")))]
|
|
mod disarmed {
|
|
use always_assert::{always, never};
|
|
|
|
#[test]
|
|
fn syntax1() {
|
|
assert!(!always!(false));
|
|
}
|
|
|
|
#[test]
|
|
fn syntax2() {
|
|
assert!(never!(true));
|
|
}
|
|
}
|