Skip to content

Commit

Permalink
Rollup merge of #60201 - RalfJung:core-tests, r=alexcrichton
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Centril committed May 13, 2019
2 parents 2821329 + 4cb6d1c commit c8ef512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c8ef512

Please sign in to comment.