File tree 2 files changed +8
-21
lines changed
crates/intrinsic-test/src
2 files changed +8
-21
lines changed Original file line number Diff line number Diff line change 56
56
os : ubuntu-latest
57
57
- tuple : aarch64-unknown-linux-gnu
58
58
os : ubuntu-latest
59
- - target :
60
- tuple : aarch64_be-unknown-linux-gnu
59
+ - tuple : aarch64_be-unknown-linux-gnu
61
60
os : ubuntu-latest
62
61
- tuple : riscv64gc-unknown-linux-gnu
63
62
os : ubuntu-latest
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