We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7680a3c commit b75648aCopy full SHA for b75648a
std/src/sys/pal/unix/process/process_unix/tests.rs
@@ -24,6 +24,9 @@ fn exitstatus_display_tests() {
24
// The purpose of this test is to test our string formatting, not our understanding of the wait
25
// status magic numbers. So restrict these to Linux.
26
if cfg!(target_os = "linux") {
27
+ #[cfg(any(target_arch = "mips", target_arch = "mips64"))]
28
+ t(0x0137f, "stopped (not terminated) by signal: 19 (SIGPWR)");
29
+ #[cfg(not(any(target_arch = "mips", target_arch = "mips64")))]
30
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
31
t(0x0ffff, "continued (WIFCONTINUED)");
32
}
0 commit comments