@@ -738,17 +738,13 @@ const KNOWN_JSONDOCCK_DIRECTIVE_NAMES: &[&str] =
738
738
/// ```text
739
739
/// //@ compile-flags: -O
740
740
/// ^^^^^^^^^^^^^^^^^ directive
741
- /// ^^^^^^^^^^^^^^^^^^^^^ original_line
742
741
///
743
742
/// //@ [foo] compile-flags: -O
744
743
/// ^^^ header_revision
745
744
/// ^^^^^^^^^^^^^^^^^ directive
746
- /// ^^^^^^^^^^^^^^^^^^^^^^^^^^^ original_line
747
745
/// ```
748
746
struct DirectiveLine < ' ln > {
749
747
line_number : usize ,
750
- /// Raw line from the test file, including comment prefix and any revision.
751
- original_line : & ' ln str ,
752
748
/// Some header directives start with a revision name in square brackets
753
749
/// (e.g. `[foo]`), and only apply to that revision of the test.
754
750
/// If present, this field contains the revision name (e.g. `foo`).
@@ -824,12 +820,7 @@ fn iter_header(
824
820
] ;
825
821
// Process the extra implied directives, with a dummy line number of 0.
826
822
for directive in extra_directives {
827
- it ( DirectiveLine {
828
- line_number : 0 ,
829
- original_line : "" ,
830
- header_revision : None ,
831
- directive,
832
- } ) ;
823
+ it ( DirectiveLine { line_number : 0 , header_revision : None , directive } ) ;
833
824
}
834
825
}
835
826
@@ -846,11 +837,6 @@ fn iter_header(
846
837
if rdr. read_line ( & mut ln) . unwrap ( ) == 0 {
847
838
break ;
848
839
}
849
-
850
- // Assume that any directives will be found before the first
851
- // module or function. This doesn't seem to be an optimization
852
- // with a warm page cache. Maybe with a cold one.
853
- let original_line = & ln;
854
840
let ln = ln. trim ( ) ;
855
841
856
842
// Assume that any directives will be found before the first module or function. This
@@ -904,7 +890,6 @@ fn iter_header(
904
890
905
891
it ( DirectiveLine {
906
892
line_number,
907
- original_line,
908
893
header_revision,
909
894
directive : non_revisioned_directive_line,
910
895
} ) ;
@@ -1291,13 +1276,14 @@ pub fn make_test_description<R: Read>(
1291
1276
1292
1277
let mut local_poisoned = false ;
1293
1278
1279
+ // Scan through the test file to handle `ignore-*`, `only-*`, and `needs-*` directives.
1294
1280
iter_header (
1295
1281
config. mode ,
1296
1282
& config. suite ,
1297
1283
& mut local_poisoned,
1298
1284
path,
1299
1285
src,
1300
- & mut |DirectiveLine { header_revision, original_line , directive : ln, line_number } | {
1286
+ & mut |DirectiveLine { header_revision, directive : ln, line_number } | {
1301
1287
if header_revision. is_some ( ) && header_revision != test_revision {
1302
1288
return ;
1303
1289
}
@@ -1322,17 +1308,7 @@ pub fn make_test_description<R: Read>(
1322
1308
} ;
1323
1309
}
1324
1310
1325
- if let Some ( ( _, post) ) = original_line. trim_start ( ) . split_once ( "//" ) {
1326
- let post = post. trim_start ( ) ;
1327
- if post. starts_with ( "ignore-tidy" ) {
1328
- // Not handled by compiletest.
1329
- } else {
1330
- decision ! ( cfg:: handle_ignore( config, ln) ) ;
1331
- }
1332
- } else {
1333
- decision ! ( cfg:: handle_ignore( config, ln) ) ;
1334
- }
1335
-
1311
+ decision ! ( cfg:: handle_ignore( config, ln) ) ;
1336
1312
decision ! ( cfg:: handle_only( config, ln) ) ;
1337
1313
decision ! ( needs:: handle_needs( & cache. needs, config, ln) ) ;
1338
1314
decision ! ( ignore_llvm( config, ln) ) ;
0 commit comments