mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-23 05:20:43 +00:00

We will have more test features in the near future, and it would be nice for them all to have a common `test-` prefix. Reverse the existing feature so this is the case.
7 lines
246 B
Rust
7 lines
246 B
Rust
//! compare
|
|
|
|
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
|
|
#[cfg(not(target_arch = "powerpc64"))]
|
|
#[cfg(all(test, feature = "test-musl-serialized"))]
|
|
include!(concat!(env!("OUT_DIR"), "/musl-tests.rs"));
|