mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
3ba0139c66
Since they are never set and don't have impact on the test. Or for the cfg-panic tests are already tested with check-cfg.
26 lines
855 B
Rust
26 lines
855 B
Rust
// Verifies that when compiling with -Zsanitizer=kernel-address,
|
|
// the `#[cfg(sanitize = "address")]` attribute is configured.
|
|
|
|
//@ check-pass
|
|
//@ compile-flags: -Zsanitizer=kernel-address
|
|
//@ revisions: aarch64 riscv64imac riscv64gc x86_64
|
|
//@[aarch64] compile-flags: --target aarch64-unknown-none
|
|
//@[aarch64] needs-llvm-components: aarch64
|
|
//@[riscv64imac] compile-flags: --target riscv64imac-unknown-none-elf
|
|
//@[riscv64imac] needs-llvm-components: riscv
|
|
//@[riscv64gc] compile-flags: --target riscv64gc-unknown-none-elf
|
|
//@[riscv64gc] needs-llvm-components: riscv
|
|
//@[x86_64] compile-flags: --target x86_64-unknown-none
|
|
//@[x86_64] needs-llvm-components: x86
|
|
|
|
#![crate_type = "rlib"]
|
|
#![feature(cfg_sanitize, no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang = "sized"]
|
|
trait Sized {}
|
|
|
|
const _: fn() -> () = main;
|
|
|
|
#[cfg(sanitize = "address")]
|
|
fn main() {}
|