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

Commit b6c58f0

Browse files
committed
Temp fix: don't run cargo lint tests in rustc test suite
1 parent a0e9f9b commit b6c58f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/compile-test.rs

+3
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ fn run_ui_toml(config: &mut compiletest::Config) {
153153
}
154154

155155
fn run_ui_cargo(config: &mut compiletest::Config) {
156+
if cargo::is_rustc_test_suite() {
157+
return;
158+
}
156159
fn run_tests(
157160
config: &compiletest::Config,
158161
filter: &Option<String>,

0 commit comments

Comments
 (0)