@@ -14,17 +14,17 @@ pub(crate) fn run(
14
14
host_triple : & str ,
15
15
target_triple : & str ,
16
16
) {
17
- if !config:: get_bool ( "testsuite.abi-checker " ) {
18
- eprintln ! ( "[SKIP] abi-checker " ) ;
17
+ if !config:: get_bool ( "testsuite.abi-cafe " ) {
18
+ eprintln ! ( "[SKIP] abi-cafe " ) ;
19
19
return ;
20
20
}
21
21
22
22
if host_triple != target_triple {
23
- eprintln ! ( "[SKIP] abi-checker (cross-compilation not supported)" ) ;
23
+ eprintln ! ( "[SKIP] abi-cafe (cross-compilation not supported)" ) ;
24
24
return ;
25
25
}
26
26
27
- eprintln ! ( "Building sysroot for abi-checker " ) ;
27
+ eprintln ! ( "Building sysroot for abi-cafe " ) ;
28
28
build_sysroot:: build_sysroot (
29
29
channel,
30
30
sysroot_kind,
@@ -34,14 +34,14 @@ pub(crate) fn run(
34
34
target_triple,
35
35
) ;
36
36
37
- eprintln ! ( "Running abi-checker " ) ;
38
- let mut abi_checker_path = env:: current_dir ( ) . unwrap ( ) ;
39
- abi_checker_path . push ( "abi-checker " ) ;
40
- env:: set_current_dir ( & abi_checker_path . clone ( ) ) . unwrap ( ) ;
37
+ eprintln ! ( "Running abi-cafe " ) ;
38
+ let mut abi_cafe_path = env:: current_dir ( ) . unwrap ( ) ;
39
+ abi_cafe_path . push ( "abi-cafe " ) ;
40
+ env:: set_current_dir ( & abi_cafe_path . clone ( ) ) . unwrap ( ) ;
41
41
42
42
let pairs = [ "rustc_calls_cgclif" , "cgclif_calls_rustc" , "cgclif_calls_cc" , "cc_calls_cgclif" ] ;
43
43
44
- let mut cmd = cargo_command ( "cargo" , "run" , Some ( target_triple) , & abi_checker_path ) ;
44
+ let mut cmd = cargo_command ( "cargo" , "run" , Some ( target_triple) , & abi_cafe_path ) ;
45
45
cmd. arg ( "--" ) ;
46
46
cmd. arg ( "--pairs" ) ;
47
47
cmd. args ( pairs) ;
0 commit comments