mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Migrate run-make/allow-warnings-cmdline-stability
to rmake.rs
This commit is contained in:
parent
56733372b8
commit
404d47ec20
@ -1,6 +1,5 @@
|
||||
run-make/allocator-shim-circular-deps/Makefile
|
||||
run-make/allow-non-lint-warnings-cmdline/Makefile
|
||||
run-make/allow-warnings-cmdline-stability/Makefile
|
||||
run-make/archive-duplicate-names/Makefile
|
||||
run-make/atomic-lock-free/Makefile
|
||||
run-make/bare-outfile/Makefile
|
||||
|
@ -1,16 +0,0 @@
|
||||
# ignore-cross-compile
|
||||
include ../tools.mk
|
||||
|
||||
# Test that -A warnings makes the 'empty trait list for derive' warning go away
|
||||
DEP=$(shell $(RUSTC) bar.rs)
|
||||
OUT=$(shell $(RUSTC) foo.rs -A warnings 2>&1 | grep "warning" )
|
||||
|
||||
all: foo bar
|
||||
test -z '$(OUT)'
|
||||
|
||||
# These are just to ensure that the above commands actually work
|
||||
bar:
|
||||
$(RUSTC) bar.rs
|
||||
|
||||
foo: bar
|
||||
$(RUSTC) foo.rs -A warnings
|
11
tests/run-make/allow-warnings-cmdline-stability/rmake.rs
Normal file
11
tests/run-make/allow-warnings-cmdline-stability/rmake.rs
Normal file
@ -0,0 +1,11 @@
|
||||
// Test that `-Awarnings` suppresses warnings for unstable APIs.
|
||||
|
||||
use run_make_support::{assert_not_contains, rustc};
|
||||
|
||||
fn main() {
|
||||
rustc().input("bar.rs").run();
|
||||
let output = rustc().input("foo.rs").arg("-Awarnings").run();
|
||||
|
||||
assert_not_contains(&String::from_utf8(output.stdout).unwrap(), "warning");
|
||||
assert_not_contains(&String::from_utf8(output.stderr).unwrap(), "warning");
|
||||
}
|
Loading…
Reference in New Issue
Block a user