Skip to content
/ rustc Public
forked from rust-lang/rust

Commit

Permalink
Temp fix: don't run cargo lint tests in rustc test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
flip1995 committed May 28, 2020
1 parent a0e9f9b commit b6c58f0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/compile-test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ fn run_ui_toml(config: &mut compiletest::Config) {
}

fn run_ui_cargo(config: &mut compiletest::Config) {
if cargo::is_rustc_test_suite() {
return;
}
fn run_tests(
config: &compiletest::Config,
filter: &Option<String>,
Expand Down

0 comments on commit b6c58f0

Please sign in to comment.