mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
Don't run proc-macro-srv tests on the rust-analyzer repo
proc-macro ABI breakage still affects the tests when a new stable version releases. Ideally we'd still be able to run the tests on the rust-analyzer repo without having to update the proc-macro ABI, but for now just to unblock CI we will ignore them here, as they are still run in upstream.
This commit is contained in:
parent
5b49745d00
commit
f57cd838d8
6 changed files with 26 additions and 23 deletions
|
@ -20,6 +20,8 @@
|
|||
mod dylib;
|
||||
mod abis;
|
||||
|
||||
pub mod cli;
|
||||
|
||||
use std::{
|
||||
collections::{hash_map::Entry, HashMap},
|
||||
env,
|
||||
|
@ -149,7 +151,10 @@ impl EnvSnapshot {
|
|||
}
|
||||
}
|
||||
|
||||
pub mod cli;
|
||||
#[cfg(all(feature = "sysroot-abi", test))]
|
||||
mod tests;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
pub fn proc_macro_test_dylib_path() -> std::path::PathBuf {
|
||||
proc_macro_test::PROC_MACRO_TEST_LOCATION.into()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue