diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-05-13 21:36:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-13 21:36:51 +0200 |
| commit | c8ef512480296b1398640088fe16759ac9614d81 (patch) | |
| tree | 8e562fc2cf6374fb9084fcbf1fc7208a0416636f | |
| parent | 2821329c34e2c6f117d09638b1a32def37abcecf (diff) | |
| parent | 4cb6d1c523ce375388622477e8020117a89d0c1d (diff) | |
| download | rust-c8ef512480296b1398640088fe16759ac9614d81.tar.gz rust-c8ef512480296b1398640088fe16759ac9614d81.zip | |
Rollup merge of #60201 - RalfJung:core-tests, r=alexcrichton
coretest: Downgrade deny to warn The `deny` causes a build failure in https://github.com/RalfJung/miri-test-libstd. Since we use `-D warnings` for rustc builds, `warn` should be enough to lead to compile errors here, without impeding external builds.
| -rw-r--r-- | src/libcore/tests/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/tests/lib.rs b/src/libcore/tests/lib.rs index 025f7fb5cc6..b8075ef2942 100644 --- a/src/libcore/tests/lib.rs +++ b/src/libcore/tests/lib.rs @@ -31,7 +31,7 @@ #![feature(slice_partition_dedup)] #![feature(copy_within)] #![feature(int_error_matching)] -#![deny(rust_2018_idioms)] +#![warn(rust_2018_idioms)] extern crate test; |
