File tree Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 11//@ run-pass
22//@ ignore-windows
3- //@ ignore-macos
43//@ ignore-wasm32 common linkage not implemented right now
54
65#![ feature( linkage) ]
Original file line number Diff line number Diff line change 55//@ no-prefer-dynamic
66//@ ignore-wasm32 no processes
77//@ ignore-sgx no processes
8- //@ ignore-macos
98
109extern crate exit_success_if_unwind;
1110
12- use std:: process:: Command ;
1311use std:: env;
12+ use std:: process:: Command ;
1413
1514fn main ( ) {
1615 let mut args = env:: args_os ( ) ;
@@ -25,7 +24,6 @@ fn main() {
2524 let mut cmd = Command :: new ( env:: args_os ( ) . next ( ) . unwrap ( ) ) ;
2625 cmd. arg ( "foo" ) ;
2726
28-
2927 // ARMv6 hanges while printing the backtrace, see #41004
3028 if cfg ! ( target_arch = "arm" ) && cfg ! ( target_env = "gnu" ) {
3129 cmd. env ( "RUST_BACKTRACE" , "0" ) ;
Original file line number Diff line number Diff line change 44//@ no-prefer-dynamic
55//@ ignore-wasm32 no processes
66//@ ignore-sgx no processes
7- //@ ignore-macos
87
9- use std:: process:: Command ;
108use std:: env;
9+ use std:: process:: Command ;
1110
1211struct Bomb ;
1312
@@ -23,7 +22,6 @@ fn main() {
2322
2423 if let Some ( s) = args. next ( ) {
2524 if & * s == "foo" {
26-
2725 let _bomb = Bomb ;
2826
2927 panic ! ( "try to catch me" ) ;
Original file line number Diff line number Diff line change 22
33//@ compile-flags:-C panic=abort
44//@ no-prefer-dynamic
5- //@ ignore-macos
65
76#![ feature( panic_abort) ]
87
You can’t perform that action at this time.
0 commit comments