delete space · patricklam/verify-rust-std@c54958c (original) (raw)
File tree
1 file changed
lines changed
- std/src/sys/pal/unix/process/process_unix
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -31,13 +31,13 @@ fn exitstatus_display_tests() { | ||
31 | 31 | t(0x0137f, "stopped (not terminated) by signal: 19 (SIGCONT)"); |
32 | 32 | |
33 | 33 | #[cfg(not(any( |
34 | - target_arch = "mips", | |
34 | + target_arch = "mips", | |
35 | 35 | target_arch = "mips64", |
36 | 36 | target_arch = "sparc", |
37 | 37 | target_arch = "sparc64" |
38 | 38 | )))] |
39 | 39 | t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)"); |
40 | - | |
40 | + | |
41 | 41 | t(0x0ffff, "continued (WIFCONTINUED)"); |
42 | 42 | } |
43 | 43 |