We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11b801b commit a3f8edfCopy full SHA for a3f8edf
library/std/src/sys/pal/unix/process/process_unix/tests.rs
@@ -26,8 +26,16 @@ fn exitstatus_display_tests() {
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
+ #[cfg(any(target_arch = "sparc", target_arch = "sparc64"))]
31
+ t(0x0137f, "stopped (not terminated) by signal: 19 (SIGCONT)");
32
33
+ #[cfg(not(any(target_arch = "mips",
34
+ target_arch = "sparc",
35
+ target_arch = "mips64",
36
+ target_arch = "sprac64")))]
37
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
38
39
t(0x0ffff, "continued (WIFCONTINUED)");
40
}
41
0 commit comments