Skip to content

Commit edd4c97

Browse files
authored
Rollup merge of #126386 - GuillaumeGomez:migrate-run-make-allow-non-lint-warnings-cmdline, r=jieyouxu
Migrate `run-make/allow-non-lint-warnings-cmdline` to `rmake.rs` Part of #121876. r? ```@jieyouxu```
2 parents 9f2fc64 + eca8d20 commit edd4c97

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

src/tools/run-make-support/src/command.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::path::Path;
66
use std::process::{Command as StdCommand, ExitStatus, Output, Stdio};
77

88
use crate::drop_bomb::DropBomb;
9-
use crate::{assert_not_contains, handle_failed_output};
9+
use crate::{assert_contains, assert_not_contains, handle_failed_output};
1010

1111
/// This is a custom command wrapper that simplifies working with commands and makes it easier to
1212
/// ensure that we check the exit status of executed processes.
@@ -170,6 +170,12 @@ impl CompletedProcess {
170170
self
171171
}
172172

173+
#[track_caller]
174+
pub fn assert_stdout_contains<S: AsRef<str>>(self, needle: S) -> Self {
175+
assert_contains(&self.stdout_utf8(), needle.as_ref());
176+
self
177+
}
178+
173179
#[track_caller]
174180
pub fn assert_stdout_not_contains<S: AsRef<str>>(&self, needle: S) -> &Self {
175181
assert_not_contains(&self.stdout_utf8(), needle.as_ref());
@@ -185,7 +191,7 @@ impl CompletedProcess {
185191

186192
#[track_caller]
187193
pub fn assert_stderr_contains<S: AsRef<str>>(&self, needle: S) -> &Self {
188-
assert!(self.stderr_utf8().contains(needle.as_ref()));
194+
assert_contains(&self.stderr_utf8(), needle.as_ref());
189195
self
190196
}
191197

src/tools/run-make-support/src/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,18 @@ pub fn read_dir<F: Fn(&Path)>(dir: impl AsRef<Path>, callback: F) {
332332
}
333333
}
334334

335+
/// Check that `haystack` contains `needle`. Panic otherwise.
336+
#[track_caller]
337+
pub fn assert_contains(haystack: &str, needle: &str) {
338+
if !haystack.contains(needle) {
339+
eprintln!("=== HAYSTACK ===");
340+
eprintln!("{}", haystack);
341+
eprintln!("=== NEEDLE ===");
342+
eprintln!("{}", needle);
343+
panic!("needle was not found in haystack");
344+
}
345+
}
346+
335347
/// Check that `haystack` does not contain `needle`. Panic otherwise.
336348
#[track_caller]
337349
pub fn assert_not_contains(haystack: &str, needle: &str) {

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
run-make/allocator-shim-circular-deps/Makefile
2-
run-make/allow-non-lint-warnings-cmdline/Makefile
32
run-make/archive-duplicate-names/Makefile
43
run-make/atomic-lock-free/Makefile
54
run-make/branch-protection-check-IBT/Makefile

tests/run-make/allow-non-lint-warnings-cmdline/Makefile

-12
This file was deleted.

tests/run-make/allow-non-lint-warnings-cmdline/foo.rs tests/ui/allow-non-lint-warnings.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//@ compile-flags: -Awarnings
2+
//@ check-pass
3+
14
#[derive()]
25
#[derive(Copy, Clone)]
36
pub struct Foo;

0 commit comments

Comments
 (0)