about summary refs log tree commit diff
path: root/src/test/codegen/sanitizer-no-sanitize-inlining.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-30/+0
2021-03-05Bump mir-opt-level from 3 to 4 in testsSantiago Pastorino-2/+2
2020-06-19Rollup merge of #73044 - tmiasko:compiletest-san, r=nikomatsakisRalf Jung-4/+2
compiletest: Add directives to detect sanitizer support Add needs-sanitizer-{address,leak,memory,thread} directive indicating that test requires target with support for specific sanitizer. This is an addition to the existing needs-sanitizer-support directive indicating that test requires a sanitizer runtime library. The existing needs-sanitizer-support directive could be incorporated into the new ones, but I decided to retain it, since it enables running sanitizer codegen tests even when building of sanitizer runtime libraries is disabled.
2020-06-15Update sanitizer testNathan Corbyn-1/+2
2020-06-15Fix sanitizer testNathan Corbyn-2/+1
2020-06-13compiletest: Add directives to detect sanitizer supportTomasz Miąsko-4/+2
Add needs-sanitizer-{address,leak,memory,thread} directive indicating that test requires target with support for specific sanitizer. This is an addition to the existing needs-sanitizer-support directive indicating that test requires a sanitizer runtime library.
2020-02-05Selectively disable sanitizer instrumentationTomasz Miąsko-0/+32
Add `no_sanitize` attribute that allows to opt out from sanitizer instrumentation in an annotated function.