File tree 2 files changed +3
-11
lines changed
2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 1
1
use super :: build_sysroot;
2
2
use super :: config;
3
- use super :: utils:: spawn_and_wait_with_input ;
3
+ use super :: utils:: spawn_and_wait ;
4
4
use build_system:: SysrootKind ;
5
5
use std:: env;
6
6
use std:: path:: Path ;
@@ -56,13 +56,5 @@ pub(crate) fn run(
56
56
cmd. arg ( "--add-rustc-codegen-backend" ) ;
57
57
cmd. arg ( format ! ( "cgclif:{}" , cg_clif_dylib_path. display( ) ) ) ;
58
58
59
- let output = spawn_and_wait_with_input ( cmd, "" . to_string ( ) ) ;
60
-
61
- // TODO: The correct thing to do here is to check the exit code, but abi-checker
62
- // currently doesn't return 0 on success, so check for the test fail count.
63
- // See: https://github.com/Gankra/abi-checker/issues/10
64
- let failed = !( output. contains ( "0 failed" ) && output. contains ( "0 completely failed" ) ) ;
65
- if failed {
66
- panic ! ( "abi-checker failed!" ) ;
67
- }
59
+ spawn_and_wait ( cmd) ;
68
60
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub(crate) fn prepare() {
18
18
"abi-checker" ,
19
19
"Gankra" ,
20
20
"abi-checker" ,
21
- "7c1571da6e43f9a37347623e7d5c7d51be664a7b " ,
21
+ "a2232d45f202846f5c02203c9f27355360f9a2ff " ,
22
22
) ;
23
23
24
24
clone_repo_shallow_github (
You can’t perform that action at this time.
0 commit comments