forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#82411 - ijackson:fix-exitstatus, r=dtolnay
Fixes to ExitStatus and its docs * On Unix, properly display every possible wait status (and don't panic on weird values) * In the documentation, be clear and consistent about "exit status" vs "wait status".
- Loading branch information
Showing
4 changed files
with
67 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#[test] | ||
fn exitstatus_display_tests() { | ||
// In practice this is the same on every Unix. | ||
// If some weird platform turns out to be different, and this test fails, use #[cfg]. | ||
use crate::os::unix::process::ExitStatusExt; | ||
use crate::process::ExitStatus; | ||
|
||
let t = |v, s| assert_eq!(s, format!("{}", <ExitStatus as ExitStatusExt>::from_raw(v))); | ||
|
||
t(0x0000f, "signal: 15"); | ||
t(0x0008b, "signal: 11 (core dumped)"); | ||
t(0x00000, "exit code: 0"); | ||
t(0x0ff00, "exit code: 255"); | ||
t(0x0137f, "stopped (not terminated) by signal: 19"); | ||
t(0x0ffff, "continued (WIFCONTINUED)"); | ||
|
||
// Testing "unrecognised wait status" is hard because the wait.h macros typically | ||
// assume that the value came from wait and isn't mad. With the glibc I have here | ||
// this works: | ||
#[cfg(target_env = "gnu")] | ||
t(0x000ff, "unrecognised wait status: 255 0xff"); | ||
} |