We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03de213 commit db9bf14Copy full SHA for db9bf14
tests/run-make/rust-lld/rmake.rs
@@ -59,7 +59,7 @@ fn main() {
59
}
60
61
fn find_lld_version_in_logs(output: &Output) -> bool {
62
- let lld_version_re = Regex::new(r"^ LLD [0-9]+\.[0-9]+\.[0-9]+").unwrap();
+ let lld_version_re = Regex::new(r"^LLD [0-9]+\.[0-9]+\.[0-9]+").unwrap();
63
let stderr = std::str::from_utf8(&output.stderr).unwrap();
64
stderr.lines().any(|line| lld_version_re.is_match(line.trim_whitespace()))
65
0 commit comments