File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
library/std/src/sys/pal/unix/process/process_unix Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,16 @@ fn exitstatus_display_tests() {
26
26
if cfg ! ( target_os = "linux" ) {
27
27
#[ cfg( any( target_arch = "mips" , target_arch = "mips64" ) ) ]
28
28
t ( 0x0137f , "stopped (not terminated) by signal: 19 (SIGPWR)" ) ;
29
- #[ cfg( not( any( target_arch = "mips" , target_arch = "mips64" ) ) ) ]
29
+
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" ) ) ) ]
30
37
t ( 0x0137f , "stopped (not terminated) by signal: 19 (SIGSTOP)" ) ;
38
+
31
39
t ( 0x0ffff , "continued (WIFCONTINUED)" ) ;
32
40
}
33
41
You can’t perform that action at this time.
0 commit comments