mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-16 07:50:18 +00:00
9 lines
420 B
Rust
9 lines
420 B
Rust
#[cfg(not(any(feature = "full", tokio_wasm)))]
|
|
compile_error!("run main Tokio tests with `--features full`");
|
|
|
|
// CI sets `--cfg tokio_no_parking_lot` when trying to run tests with
|
|
// `parking_lot` disabled. This check prevents "silent failure" if `parking_lot`
|
|
// accidentally gets enabled.
|
|
#[cfg(all(tokio_no_parking_lot, feature = "parking_lot"))]
|
|
compile_error!("parking_lot feature enabled when it should not be");
|