forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate
run-make/allow-non-lint-warnings-cmdline
to rmake.rs
- Loading branch information
1 parent
9314831
commit 96f9fe5
Showing
3 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Test that -A warnings makes the 'empty trait list for derive' warning go away. | ||
|
||
use run_make_support::rustc; | ||
|
||
fn main() { | ||
let output = rustc().input("foo.rs").arg("-Awarnings").run(); | ||
output.assert_stderr_not_contains("warning"); | ||
} |