Skip to content

Commit a45a5e8

Browse files
authored
Unrolled build for rust-lang#131614
Rollup merge of rust-lang#131614 - jieyouxu:rmake-no-rev, r=Kobzol Error on trying to use revisions in `run-make` tests Currently, `run-make` tests do not support revisions.
2 parents ecf2d1f + 9f0f035 commit a45a5e8

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

src/tools/compiletest/src/header.rs

+13-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl EarlyProps {
5959
rdr,
6060
&mut |HeaderLine { directive: ln, .. }| {
6161
parse_and_update_aux(config, ln, &mut props.aux);
62-
config.parse_and_update_revisions(ln, &mut props.revisions);
62+
config.parse_and_update_revisions(testfile, ln, &mut props.revisions);
6363
},
6464
);
6565

@@ -391,7 +391,7 @@ impl TestProps {
391391
has_edition = true;
392392
}
393393

394-
config.parse_and_update_revisions(ln, &mut self.revisions);
394+
config.parse_and_update_revisions(testfile, ln, &mut self.revisions);
395395

396396
if let Some(flags) = config.parse_name_value_directive(ln, RUN_FLAGS) {
397397
self.run_flags.extend(split_flags(&flags));
@@ -907,12 +907,21 @@ fn iter_header(
907907
}
908908

909909
impl Config {
910-
fn parse_and_update_revisions(&self, line: &str, existing: &mut Vec<String>) {
910+
fn parse_and_update_revisions(&self, testfile: &Path, line: &str, existing: &mut Vec<String>) {
911911
if let Some(raw) = self.parse_name_value_directive(line, "revisions") {
912+
if self.mode == Mode::RunMake {
913+
panic!("`run-make` tests do not support revisions: {}", testfile.display());
914+
}
915+
912916
let mut duplicates: HashSet<_> = existing.iter().cloned().collect();
913917
for revision in raw.split_whitespace().map(|r| r.to_string()) {
914918
if !duplicates.insert(revision.clone()) {
915-
panic!("Duplicate revision: `{}` in line `{}`", revision, raw);
919+
panic!(
920+
"duplicate revision: `{}` in line `{}`: {}",
921+
revision,
922+
raw,
923+
testfile.display()
924+
);
916925
}
917926
existing.push(revision);
918927
}

src/tools/compiletest/src/header/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ fn test_extract_version_range() {
423423
}
424424

425425
#[test]
426-
#[should_panic(expected = "Duplicate revision: `rpass1` in line ` rpass1 rpass1`")]
426+
#[should_panic(expected = "duplicate revision: `rpass1` in line ` rpass1 rpass1`")]
427427
fn test_duplicate_revisions() {
428428
let config: Config = cfg().build();
429429
parse_rs(&config, "//@ revisions: rpass1 rpass1");

0 commit comments

Comments
 (0)