2022-09-11 23:36:19 +00:00
|
|
|
// Verifies that when compiling with -Zsanitizer=kernel-address,
|
|
|
|
// the `#[cfg(sanitize = "address")]` attribute is configured.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2024-04-06 22:46:35 +00:00
|
|
|
//@ compile-flags: -Zsanitizer=kernel-address
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ 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
|
2022-09-11 23:36:19 +00:00
|
|
|
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#![feature(cfg_sanitize, no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
|
|
|
|
const _: fn() -> () = main;
|
|
|
|
|
2024-04-06 22:46:35 +00:00
|
|
|
#[cfg(sanitize = "address")]
|
2022-09-11 23:36:19 +00:00
|
|
|
fn main() {}
|