Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
minxuanz committed Aug 9, 2024
1 parent 7c34ebf commit dadbd58
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions std/src/sys/pal/unix/process/process_unix/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ fn exitstatus_display_tests() {
#[cfg(any(target_arch = "sparc", target_arch = "sparc64"))]
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGCONT)");

#[cfg(not(any(target_arch = "mips",
target_arch = "sparc",
target_arch = "mips64",
target_arch = "sprac64")))]
#[cfg(not(any(
target_arch = "mips",
target_arch = "mips64",
target_arch = "sparc",
target_arch = "sparc64"
)))]
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");

t(0x0ffff, "continued (WIFCONTINUED)");
Expand Down

0 comments on commit dadbd58

Please sign in to comment.