about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-05-13 21:36:51 +0200
committerGitHub <noreply@github.com>2019-05-13 21:36:51 +0200
commitc8ef512480296b1398640088fe16759ac9614d81 (patch)
tree8e562fc2cf6374fb9084fcbf1fc7208a0416636f
parent2821329c34e2c6f117d09638b1a32def37abcecf (diff)
parent4cb6d1c523ce375388622477e8020117a89d0c1d (diff)
downloadrust-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.rs2
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;