We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c34ebf commit dadbd58Copy full SHA for dadbd58
std/src/sys/pal/unix/process/process_unix/tests.rs
@@ -30,10 +30,12 @@ fn exitstatus_display_tests() {
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")))]
+ #[cfg(not(any(
+ target_arch = "mips",
+ target_arch = "mips64",
+ target_arch = "sparc",
37
+ target_arch = "sparc64"
38
+ )))]
39
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
40
41
t(0x0ffff, "continued (WIFCONTINUED)");
0 commit comments