From fb736449fd939e2727a204ed1c52f1df805a1437 Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Tue, 27 Sep 2022 13:52:04 +0200 Subject: [PATCH] Use cfg(any()) instead of cfg(FALSE) for disabling proc-macro test --- crates/rust-analyzer/tests/slow-tests/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rust-analyzer/tests/slow-tests/main.rs b/crates/rust-analyzer/tests/slow-tests/main.rs index 3e3f1c162f..9032c21d09 100644 --- a/crates/rust-analyzer/tests/slow-tests/main.rs +++ b/crates/rust-analyzer/tests/slow-tests/main.rs @@ -821,7 +821,7 @@ fn main() { #[test] // FIXME: Re-enable once we can run proc-macro tests on rust-lang/rust-analyzer again -#[cfg(FALSE)] +#[cfg(any())] fn resolve_proc_macro() { use expect_test::expect; if skip_slow_tests() {