@@ -24,11 +24,10 @@ pub fn run_tests(env: &Environment) -> anyhow::Result<()> {
2424 let host_triple = env. host_triple ( ) ;
2525 let version = find_dist_version ( & dist_dir) ?;
2626
27- // Extract rustc, libstd, cargo and src archives to create the optimized sysroot
27+ // Extract rustc, libstd and src archives to create the optimized sysroot
2828 let rustc_dir = extract_dist_dir ( & format ! ( "rustc-{version}-{host_triple}" ) ) ?. join ( "rustc" ) ;
2929 let libstd_dir = extract_dist_dir ( & format ! ( "rust-std-{version}-{host_triple}" ) ) ?
3030 . join ( format ! ( "rust-std-{host_triple}" ) ) ;
31- let cargo_dir = extract_dist_dir ( & format ! ( "cargo-{version}-{host_triple}" ) ) ?. join ( "cargo" ) ;
3231 let extracted_src_dir = extract_dist_dir ( & format ! ( "rust-src-{version}" ) ) ?. join ( "rust-src" ) ;
3332
3433 // We need to manually copy libstd to the extracted rustc sysroot
@@ -47,8 +46,6 @@ pub fn run_tests(env: &Environment) -> anyhow::Result<()> {
4746
4847 let rustc_path = rustc_dir. join ( "bin" ) . join ( format ! ( "rustc{}" , executable_extension( ) ) ) ;
4948 assert ! ( rustc_path. is_file( ) ) ;
50- let cargo_path = cargo_dir. join ( "bin" ) . join ( format ! ( "cargo{}" , executable_extension( ) ) ) ;
51- assert ! ( cargo_path. is_file( ) ) ;
5249
5350 // Specify path to a LLVM config so that LLVM is not rebuilt.
5451 // It doesn't really matter which LLVM config we choose, because no sysroot will be compiled.
@@ -65,13 +62,11 @@ change-id = 115898
6562
6663[build]
6764rustc = "{rustc}"
68- cargo = "{cargo}"
6965
7066[target.{host_triple}]
7167llvm-config = "{llvm_config}"
7268"# ,
7369 rustc = rustc_path. to_string( ) . replace( '\\' , "/" ) ,
74- cargo = cargo_path. to_string( ) . replace( '\\' , "/" ) ,
7570 llvm_config = llvm_config. to_string( ) . replace( '\\' , "/" )
7671 ) ;
7772 log:: info!( "Using following `config.toml` for running tests:\n {config_content}" ) ;
0 commit comments