Skip to content

Commit

Permalink
Rollup merge of rust-lang#69205 - JohnTitor:allow-whitespaces, r=Mark…
Browse files Browse the repository at this point in the history
…-Simulacrum

Allow whitespaces in revision flags

Allow whitespaces in revision flags, like `// [foo]`.

Fixes rust-lang#69183
  • Loading branch information
JohnTitor authored Feb 16, 2020
2 parents 0deb037 + d1a7ae7 commit c8a2b43
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/tools/compiletest/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -631,10 +631,6 @@ fn iter_header<R: Read>(testfile: &Path, cfg: Option<&str>, rdr: R, it: &mut dyn

let comment = if testfile.to_string_lossy().ends_with(".rs") { "//" } else { "#" };

// FIXME: would be nice to allow some whitespace between comment and brace :)
// It took me like 2 days to debug why compile-flags weren’t taken into account for my test :)
let comment_with_brace = comment.to_string() + "[";

let mut rdr = BufReader::new(rdr);
let mut ln = String::new();

Expand All @@ -650,7 +646,7 @@ fn iter_header<R: Read>(testfile: &Path, cfg: Option<&str>, rdr: R, it: &mut dyn
let ln = ln.trim();
if ln.starts_with("fn") || ln.starts_with("mod") {
return;
} else if ln.starts_with(&comment_with_brace) {
} else if ln.starts_with(comment) && ln[comment.len()..].trim_start().starts_with('[') {
// A comment like `//[foo]` is specific to revision `foo`
if let Some(close_brace) = ln.find(']') {
let open_brace = ln.find('[').unwrap();
Expand All @@ -663,10 +659,7 @@ fn iter_header<R: Read>(testfile: &Path, cfg: Option<&str>, rdr: R, it: &mut dyn
it(ln[(close_brace + 1)..].trim_start());
}
} else {
panic!(
"malformed condition directive: expected `{}foo]`, found `{}`",
comment_with_brace, ln
)
panic!("malformed condition directive: expected `{}[foo]`, found `{}`", comment, ln)
}
} else if ln.starts_with(comment) {
it(ln[comment.len()..].trim_start());
Expand Down

0 comments on commit c8a2b43

Please sign in to comment.