mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +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.
41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
//@ revisions: default abort-zero abort-one abort-full unwind-zero unwind-one unwind-full
|
|
|
|
//@[default] run-fail
|
|
|
|
//@[abort-zero] compile-flags: -Cpanic=abort
|
|
//@[abort-zero] no-prefer-dynamic
|
|
//@[abort-zero] exec-env:RUST_BACKTRACE=0
|
|
//@[abort-zero] run-crash
|
|
|
|
//@[abort-one] compile-flags: -Cpanic=abort
|
|
//@[abort-one] no-prefer-dynamic
|
|
//@[abort-one] exec-env:RUST_BACKTRACE=1
|
|
//@[abort-one] run-crash
|
|
|
|
//@[abort-full] compile-flags: -Cpanic=abort
|
|
//@[abort-full] no-prefer-dynamic
|
|
//@[abort-full] exec-env:RUST_BACKTRACE=full
|
|
//@[abort-full] run-crash
|
|
|
|
//@[unwind-zero] compile-flags: -Cpanic=unwind
|
|
//@[unwind-zero] exec-env:RUST_BACKTRACE=0
|
|
//@[unwind-zero] needs-unwind
|
|
//@[unwind-zero] run-fail
|
|
|
|
//@[unwind-one] compile-flags: -Cpanic=unwind
|
|
//@[unwind-one] exec-env:RUST_BACKTRACE=1
|
|
//@[unwind-one] needs-unwind
|
|
//@[unwind-one] run-fail
|
|
|
|
//@[unwind-full] compile-flags: -Cpanic=unwind
|
|
//@[unwind-full] exec-env:RUST_BACKTRACE=full
|
|
//@[unwind-full] needs-unwind
|
|
//@[unwind-full] run-fail
|
|
|
|
//@ error-pattern:moop
|
|
//@ needs-subprocess
|
|
|
|
fn main() {
|
|
panic!("moop");
|
|
}
|