mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-03 06:25:40 +00:00
And introduce two new directives for ui tests: * `run-crash` * `run-fail-or-crash` Normally a `run-fail` ui test like tests that panic shall not be terminated by a signal like `SIGABRT`. So begin having that as a hard requirement. Some of our current tests do terminate by a signal/crash however. Introduce and use `run-crash` for those tests. Note that Windows crashes are not handled by signals but by certain high bits set on the process exit code. Example exit code for crash on Windows: `0xc000001d`. Because of this, we define "crash" on all platforms as "not exit with success and not exit with a regular failure code in the range 1..=127". Some tests behave differently on different targets: * Targets without unwind support will abort (crash) instead of exit with failure code 101 after panicking. As a special case, allow crashes for `run-fail` tests for such targets. * Different sanitizer implementations handle detected memory problems differently. Some abort (crash) the process while others exit with failure code 1. Introduce and use `run-fail-or-crash` for such tests.
37 lines
1.2 KiB
Rust
37 lines
1.2 KiB
Rust
//@ revisions: default unchk_pass chk_pass chk_fail_ensures chk_fail_requires
|
|
//
|
|
//@ [default] run-pass
|
|
//@ [unchk_pass] run-pass
|
|
//@ [chk_pass] run-pass
|
|
//@ [chk_fail_requires] run-crash
|
|
//@ [chk_fail_ensures] run-crash
|
|
//
|
|
//@ [unchk_pass] compile-flags: -Zcontract-checks=no
|
|
//@ [chk_pass] compile-flags: -Zcontract-checks=yes
|
|
//@ [chk_fail_requires] compile-flags: -Zcontract-checks=yes
|
|
//@ [chk_fail_ensures] compile-flags: -Zcontract-checks=yes
|
|
#![feature(cfg_contract_checks, contracts_internals, core_intrinsics)]
|
|
|
|
fn main() {
|
|
#[cfg(any(default, unchk_pass))] // default: disabled
|
|
assert_eq!(core::intrinsics::contract_checks(), false);
|
|
|
|
#[cfg(chk_pass)] // explicitly enabled
|
|
assert_eq!(core::intrinsics::contract_checks(), true);
|
|
|
|
// always pass
|
|
core::intrinsics::contract_check_requires(|| true);
|
|
|
|
// fail if enabled
|
|
#[cfg(any(default, unchk_pass, chk_fail_requires))]
|
|
core::intrinsics::contract_check_requires(|| false);
|
|
|
|
let doubles_to_two = { let old = 2; move |ret: &u32 | ret + ret == old };
|
|
// Always pass
|
|
core::intrinsics::contract_check_ensures(doubles_to_two, 1);
|
|
|
|
// Fail if enabled
|
|
#[cfg(any(default, unchk_pass, chk_fail_ensures))]
|
|
core::intrinsics::contract_check_ensures(doubles_to_two, 2);
|
|
}
|