From 5c762bc3fda46926467e8cbaed82eca68b0fb0e7 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 24 Apr 2020 12:54:24 -0700 Subject: [PATCH] Re-enable rustc-info-cache test again Support for `-Cbitcode-in-rlib` is now on nightly! --- tests/testsuite/rustc_info_cache.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testsuite/rustc_info_cache.rs b/tests/testsuite/rustc_info_cache.rs index 3ef091e4fe0..db016e0ae08 100644 --- a/tests/testsuite/rustc_info_cache.rs +++ b/tests/testsuite/rustc_info_cache.rs @@ -6,9 +6,9 @@ use std::env; #[cargo_test] fn rustc_info_cache() { - // TODO: need to gate this on nightly as soon as -Cbitcode-in-rlib lands in - // nightly - if true { + // Needs `-Cbitcode-in-rlib` to ride to stable before this can be enabled + // everywhere. + if !cargo_test_support::is_nightly() { return; }