mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
29 lines
785 B
Rust
29 lines
785 B
Rust
// Verifies that when compiling with -Zsanitizer=option,
|
|
// the `#[cfg(sanitize = "option")]` attribute is configured.
|
|
|
|
// needs-sanitizer-support
|
|
// needs-sanitizer-address
|
|
// needs-sanitizer-leak
|
|
// needs-sanitizer-memory
|
|
// needs-sanitizer-thread
|
|
// check-pass
|
|
// revisions: address leak memory thread
|
|
//[address]compile-flags: -Zsanitizer=address --cfg address
|
|
//[leak]compile-flags: -Zsanitizer=leak --cfg leak
|
|
//[memory]compile-flags: -Zsanitizer=memory --cfg memory
|
|
//[thread]compile-flags: -Zsanitizer=thread --cfg thread
|
|
|
|
#![feature(cfg_sanitize)]
|
|
|
|
#[cfg(all(sanitize = "address", address))]
|
|
fn main() {}
|
|
|
|
#[cfg(all(sanitize = "leak", leak))]
|
|
fn main() {}
|
|
|
|
#[cfg(all(sanitize = "memory", memory))]
|
|
fn main() {}
|
|
|
|
#[cfg(all(sanitize = "thread", thread))]
|
|
fn main() {}
|