Skip to content

Commit 96f9fe5

Browse files
Migrate run-make/allow-non-lint-warnings-cmdline to rmake.rs
1 parent 9314831 commit 96f9fe5

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

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.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Test that -A warnings makes the 'empty trait list for derive' warning go away.
2+
3+
use run_make_support::rustc;
4+
5+
fn main() {
6+
let output = rustc().input("foo.rs").arg("-Awarnings").run();
7+
output.assert_stderr_not_contains("warning");
8+
}

0 commit comments

Comments
 (0)