about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-09-27 14:11:04 +0000
committerbors <bors@rust-lang.org>2022-09-27 14:11:04 +0000
commitbd8c5b6b42e844f596b6410c57050e9f3d06a8d8 (patch)
treeef5ee84037abe3852dc20124eda884a62d883aac
parent8805d05d01f961476b815e38ce054de1c950119d (diff)
parentfb736449fd939e2727a204ed1c52f1df805a1437 (diff)
downloadrust-bd8c5b6b42e844f596b6410c57050e9f3d06a8d8.tar.gz
rust-bd8c5b6b42e844f596b6410c57050e9f3d06a8d8.zip
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
-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 3e3f1c162f5..9032c21d096 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() {