run cross-lang-lto-pgo-smoketest in CI by renaming it

This commit is contained in:
Oneirical 2024-08-01 11:51:31 -04:00
parent 560e86d753
commit 290a260721
12 changed files with 35 additions and 142 deletions

View file

@ -258,13 +258,6 @@ impl CompletedProcess {
self
}
/// Checks that `stderr` does not contain the regex pattern `unexpected`.
#[track_caller]
pub fn assert_stderr_not_contains_regex<S: AsRef<str>>(&self, unexpected: S) -> &Self {
assert_not_contains_regex(&self.stdout_utf8(), unexpected);
self
}
#[track_caller]
pub fn assert_exit_code(&self, code: i32) -> &Self {
assert!(self.output.status.code() == Some(code));

View file

@ -246,6 +246,12 @@ impl LlvmObjdump {
self.cmd.arg(path.as_ref());
self
}
/// Disassemble all executable sections found in the input files.
pub fn disassemble(&mut self) -> &mut Self {
self.cmd.arg("-d");
self
}
}
impl LlvmAr {