1 // Test that preloaded runtime works with unsanitized executables.
3 // RUN: %clangxx %s -o %t
4 // RUN: env LD_PRELOAD=%shared_libasan not %run %t 2>&1 | FileCheck %s
6 // REQUIRES: asan-dynamic-runtime
8 // This way of setting LD_PRELOAD does not work with Android test runner.
13 extern "C" ssize_t
write(int fd
, const void *buf
, size_t count
);
15 void do_access(void *p
) {
16 // CHECK: AddressSanitizer: heap-buffer-overflow
20 int main(int argc
, char **argv
) {