Skip to content

Commit a0c6964

Browse files
authored
Rollup merge of rust-lang#99488 - luqmana:debuginfo-revisions, r=tmiasko
compiletest: Allow using revisions with debuginfo tests. A small wart that came up in rust-lang#95685 (comment).
2 parents 9e197b7 + 5d7cd65 commit a0c6964

File tree

5 files changed

+60
-105
lines changed

5 files changed

+60
-105
lines changed

src/test/debuginfo/basic-types-globals-lto.rs

-81
This file was deleted.

src/test/debuginfo/basic-types-globals.rs

+6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
// min-lldb-version: 310
55
// min-gdb-version: 8.0
66

7+
// revisions: lto no-lto
8+
79
// compile-flags:-g
10+
11+
// [lto] compile-flags:-C lto
12+
// [lto] no-prefer-dynamic
13+
814
// gdb-command:run
915
// gdbg-command:print 'basic_types_globals::B'
1016
// gdbr-command:print B

src/tools/compiletest/src/header.rs

+25-11
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,29 @@ impl TestProps {
535535
}
536536
}
537537

538+
pub fn line_directive<'line>(
539+
comment: &str,
540+
ln: &'line str,
541+
) -> Option<(Option<&'line str>, &'line str)> {
542+
if ln.starts_with(comment) {
543+
let ln = ln[comment.len()..].trim_start();
544+
if ln.starts_with('[') {
545+
// A comment like `//[foo]` is specific to revision `foo`
546+
if let Some(close_brace) = ln.find(']') {
547+
let lncfg = &ln[1..close_brace];
548+
549+
Some((Some(lncfg), ln[(close_brace + 1)..].trim_start()))
550+
} else {
551+
panic!("malformed condition directive: expected `{}[foo]`, found `{}`", comment, ln)
552+
}
553+
} else {
554+
Some((None, ln))
555+
}
556+
} else {
557+
None
558+
}
559+
}
560+
538561
fn iter_header<R: Read>(testfile: &Path, rdr: R, it: &mut dyn FnMut(Option<&str>, &str)) {
539562
if testfile.is_dir() {
540563
return;
@@ -557,17 +580,8 @@ fn iter_header<R: Read>(testfile: &Path, rdr: R, it: &mut dyn FnMut(Option<&str>
557580
let ln = ln.trim();
558581
if ln.starts_with("fn") || ln.starts_with("mod") {
559582
return;
560-
} else if ln.starts_with(comment) && ln[comment.len()..].trim_start().starts_with('[') {
561-
// A comment like `//[foo]` is specific to revision `foo`
562-
if let Some(close_brace) = ln.find(']') {
563-
let open_brace = ln.find('[').unwrap();
564-
let lncfg = &ln[open_brace + 1..close_brace];
565-
it(Some(lncfg), ln[(close_brace + 1)..].trim_start());
566-
} else {
567-
panic!("malformed condition directive: expected `{}[foo]`, found `{}`", comment, ln)
568-
}
569-
} else if ln.starts_with(comment) {
570-
it(None, ln[comment.len()..].trim_start());
583+
} else if let Some((lncfg, ln)) = line_directive(comment, ln) {
584+
it(lncfg, ln);
571585
}
572586
}
573587
}

src/tools/compiletest/src/runtest.rs

+18-9
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,6 @@ impl<'test> TestCx<'test> {
648648
}
649649

650650
fn run_debuginfo_cdb_test(&self) {
651-
assert!(self.revision.is_none(), "revisions not relevant here");
652-
653651
let config = Config {
654652
target_rustcflags: self.cleanup_debug_info_options(&self.config.target_rustcflags),
655653
host_rustcflags: self.cleanup_debug_info_options(&self.config.host_rustcflags),
@@ -695,7 +693,12 @@ impl<'test> TestCx<'test> {
695693

696694
// Parse debugger commands etc from test files
697695
let DebuggerCommands { commands, check_lines, breakpoint_lines, .. } =
698-
match DebuggerCommands::parse_from(&self.testpaths.file, self.config, prefixes) {
696+
match DebuggerCommands::parse_from(
697+
&self.testpaths.file,
698+
self.config,
699+
prefixes,
700+
self.revision,
701+
) {
699702
Ok(cmds) => cmds,
700703
Err(e) => self.fatal(&e),
701704
};
@@ -756,8 +759,6 @@ impl<'test> TestCx<'test> {
756759
}
757760

758761
fn run_debuginfo_gdb_test(&self) {
759-
assert!(self.revision.is_none(), "revisions not relevant here");
760-
761762
let config = Config {
762763
target_rustcflags: self.cleanup_debug_info_options(&self.config.target_rustcflags),
763764
host_rustcflags: self.cleanup_debug_info_options(&self.config.host_rustcflags),
@@ -783,7 +784,12 @@ impl<'test> TestCx<'test> {
783784
};
784785

785786
let DebuggerCommands { commands, check_lines, breakpoint_lines } =
786-
match DebuggerCommands::parse_from(&self.testpaths.file, self.config, prefixes) {
787+
match DebuggerCommands::parse_from(
788+
&self.testpaths.file,
789+
self.config,
790+
prefixes,
791+
self.revision,
792+
) {
787793
Ok(cmds) => cmds,
788794
Err(e) => self.fatal(&e),
789795
};
@@ -1005,8 +1011,6 @@ impl<'test> TestCx<'test> {
10051011
}
10061012

10071013
fn run_debuginfo_lldb_test(&self) {
1008-
assert!(self.revision.is_none(), "revisions not relevant here");
1009-
10101014
if self.config.lldb_python_dir.is_none() {
10111015
self.fatal("Can't run LLDB test because LLDB's python path is not set.");
10121016
}
@@ -1059,7 +1063,12 @@ impl<'test> TestCx<'test> {
10591063

10601064
// Parse debugger commands etc from test files
10611065
let DebuggerCommands { commands, check_lines, breakpoint_lines, .. } =
1062-
match DebuggerCommands::parse_from(&self.testpaths.file, self.config, prefixes) {
1066+
match DebuggerCommands::parse_from(
1067+
&self.testpaths.file,
1068+
self.config,
1069+
prefixes,
1070+
self.revision,
1071+
) {
10631072
Ok(cmds) => cmds,
10641073
Err(e) => self.fatal(&e),
10651074
};

src/tools/compiletest/src/runtest/debugger.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use crate::common::Config;
2+
use crate::header::line_directive;
23
use crate::runtest::ProcRes;
34

45
use std::fs::File;
@@ -16,6 +17,7 @@ impl DebuggerCommands {
1617
file: &Path,
1718
config: &Config,
1819
debugger_prefixes: &[&str],
20+
rev: Option<&str>,
1921
) -> Result<Self, String> {
2022
let directives = debugger_prefixes
2123
.iter()
@@ -25,13 +27,19 @@ impl DebuggerCommands {
2527
let mut breakpoint_lines = vec![];
2628
let mut commands = vec![];
2729
let mut check_lines = vec![];
28-
let mut counter = 1;
30+
let mut counter = 0;
2931
let reader = BufReader::new(File::open(file).unwrap());
3032
for line in reader.lines() {
33+
counter += 1;
3134
match line {
3235
Ok(line) => {
33-
let line =
34-
if line.starts_with("//") { line[2..].trim_start() } else { line.as_str() };
36+
let (lnrev, line) = line_directive("//", &line).unwrap_or((None, &line));
37+
38+
// Skip any revision specific directive that doesn't match the current
39+
// revision being tested
40+
if lnrev.is_some() && lnrev != rev {
41+
continue;
42+
}
3543

3644
if line.contains("#break") {
3745
breakpoint_lines.push(counter);
@@ -49,7 +57,6 @@ impl DebuggerCommands {
4957
}
5058
Err(e) => return Err(format!("Error while parsing debugger commands: {}", e)),
5159
}
52-
counter += 1;
5360
}
5461

5562
Ok(Self { commands, check_lines, breakpoint_lines })

0 commit comments

Comments
 (0)