@@ -78,8 +78,6 @@ pub struct TestProps {
78
78
pub unset_rustc_env : Vec < String > ,
79
79
// Environment settings to use during execution
80
80
pub exec_env : Vec < ( String , String ) > ,
81
- // Lines to check if they appear in the expected debugger output
82
- pub check_lines : Vec < String > ,
83
81
// Build documentation for all specified aux-builds as well
84
82
pub build_aux_docs : bool ,
85
83
// Flag to force a crate to be built with the host architecture
@@ -165,7 +163,6 @@ impl TestProps {
165
163
rustc_env : vec ! [ ] ,
166
164
unset_rustc_env : vec ! [ ] ,
167
165
exec_env : vec ! [ ] ,
168
- check_lines : vec ! [ ] ,
169
166
build_aux_docs : false ,
170
167
force_host : false ,
171
168
check_stdout : false ,
@@ -318,10 +315,6 @@ impl TestProps {
318
315
self . unset_rustc_env . push ( ev) ;
319
316
}
320
317
321
- if let Some ( cl) = config. parse_check_line ( ln) {
322
- self . check_lines . push ( cl) ;
323
- }
324
-
325
318
if let Some ( of) = config. parse_forbid_output ( ln) {
326
319
self . forbid_output . push ( of) ;
327
320
}
@@ -555,10 +548,6 @@ impl Config {
555
548
self . parse_name_value_directive ( line, "run-flags" )
556
549
}
557
550
558
- fn parse_check_line ( & self , line : & str ) -> Option < String > {
559
- self . parse_name_value_directive ( line, "check" )
560
- }
561
-
562
551
fn parse_force_host ( & self , line : & str ) -> bool {
563
552
self . parse_name_directive ( line, "force-host" )
564
553
}
0 commit comments