@@ -277,7 +277,7 @@ struct TestRunner {
277277}
278278
279279impl TestRunner {
280- pub fn new ( dirs : Dirs , mut target_compiler : Compiler , is_native : bool ) -> Self {
280+ fn new ( dirs : Dirs , mut target_compiler : Compiler , is_native : bool ) -> Self {
281281 if let Ok ( rustflags) = env:: var ( "RUSTFLAGS" ) {
282282 target_compiler. rustflags . push ( ' ' ) ;
283283 target_compiler. rustflags . push_str ( & rustflags) ;
@@ -299,7 +299,7 @@ impl TestRunner {
299299 Self { is_native, jit_supported, dirs, target_compiler }
300300 }
301301
302- pub fn run_testsuite ( & self , tests : & [ TestCase ] ) {
302+ fn run_testsuite ( & self , tests : & [ TestCase ] ) {
303303 for TestCase { config, cmd } in tests {
304304 let ( tag, testname) = config. split_once ( '.' ) . unwrap ( ) ;
305305 let tag = tag. to_uppercase ( ) ;
@@ -384,7 +384,7 @@ impl TestRunner {
384384 spawn_and_wait ( self . rustc_command ( args) ) ;
385385 }
386386
387- fn run_out_command < ' a > ( & self , name : & str , args : & [ & str ] ) {
387+ fn run_out_command ( & self , name : & str , args : & [ & str ] ) {
388388 let mut full_cmd = vec ! [ ] ;
389389
390390 // Prepend the RUN_WRAPPER's
0 commit comments