Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #13300 - Veykril:cfg-false, r=Veykril
Use cfg(any()) instead of cfg(FALSE) for disabling proc-macro test cc https://github.com/rust-lang/rust-analyzer/pull/13286
bors 2022-09-27
parent 8805d05 · parent fb73644 · commit bd8c5b6
-rw-r--r--crates/rust-analyzer/tests/slow-tests/main.rs2
1 files changed, 1 insertions, 1 deletions
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() {