From bc5da2b5a74e959445f4d12802fac90203c3b924 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 2 Jun 2022 21:09:10 -0400 Subject: [PATCH] test ui output also in rustc test suite --- tests/compiletest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compiletest.rs b/tests/compiletest.rs index 3b6cf6a6d1fd..fef2d1f7a588 100644 --- a/tests/compiletest.rs +++ b/tests/compiletest.rs @@ -38,7 +38,7 @@ fn run_tests(mode: Mode, path: &str, target: Option) { flags.push(target.clone()); } - let skip_ui_checks = in_rustc_test_suite || env::var_os("MIRI_SKIP_UI_CHECKS").is_some(); + let skip_ui_checks = env::var_os("MIRI_SKIP_UI_CHECKS").is_some(); let output_conflict_handling = match (env::var_os("MIRI_BLESS").is_some(), skip_ui_checks) { (false, false) => OutputConflictHandling::Error,