File tree 1 file changed +7
-19
lines changed
crates/intrinsic-test/src
1 file changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -594,29 +594,17 @@ fn compare_outputs(
594
594
) )
595
595
. output ( ) ;
596
596
597
- let rust = if target != "aarch64_be-unknown-linux-gnu" {
598
- Command :: new ( "sh" )
599
- . current_dir ( "rust_programs" )
600
- . arg ( "-c" )
601
- . arg ( format ! (
597
+ let rust = Command :: new ( "sh" )
598
+ . current_dir ( "rust_programs" )
599
+ . arg ( "-c" )
600
+ . arg ( format ! (
602
601
"cargo {toolchain} run --target {target} --bin {intrinsic} --release" ,
603
602
intrinsic = intrinsic. name,
604
603
toolchain = toolchain,
605
604
target = target
606
- ) )
607
- . env ( "RUSTFLAGS" , "-Cdebuginfo=0" )
608
- . output ( )
609
- } else {
610
- Command :: new ( "sh" )
611
- . arg ( "-c" )
612
- . arg ( format ! (
613
- "{runner} ./rust_programs/target/{target}/release/{intrinsic}" ,
614
- runner = runner,
615
- target = target,
616
- intrinsic = intrinsic. name,
617
- ) )
618
- . output ( )
619
- } ;
605
+ ) )
606
+ . env ( "RUSTFLAGS" , "-Cdebuginfo=0" )
607
+ . output ( ) ;
620
608
621
609
let ( c, rust) = match ( c, rust) {
622
610
( Ok ( c) , Ok ( rust) ) => ( c, rust) ,
You can’t perform that action at this time.
0 commit comments