Summary: This involved various fixes: - Move a test that uses ulimit to Posix. - Add a few "REQUIRES: shell" lines to tests using backtick subshell evaluation. - The MSVC CRT buffers stdio if the output is a pipe by default. Some tests need that disabled to avoid interleaving test stdio with asan output. - MSVC headers provide _alloca instead of alloca (go figure), so add a portability macro to the two alloca tests. - XFAIL tests that rely on accurate symbols, we need to pass more flags to make that work. - MSVC's printf implementation of %p uses upper case letters and doesn't add 0x, so do that manually. - Accept "SEGV" or "access-violation" reports in crash tests. Reviewers: samsonov Subscribers: tberghammer, danalbert, llvm-commits, srhines Differential Revision: http://reviews.llvm.org/D12019 llvm-svn: 245073
25 lines
777 B
C++
25 lines
777 B
C++
// If user provides his own libc functions, ASan doesn't
|
|
// intercept these functions.
|
|
|
|
// RUN: %clangxx_asan -O0 %s -o %t && %run %t 2>&1 | FileCheck %s
|
|
// RUN: %clangxx_asan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
|
// RUN: %clangxx_asan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
|
|
// RUN: %clangxx_asan -O3 %s -o %t && %run %t 2>&1 | FileCheck %s
|
|
// On Windows, defining strtoll results in linker errors.
|
|
// XFAIL: freebsd,win32
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
extern "C" long strtol(const char *nptr, char **endptr, int base) {
|
|
fprintf(stderr, "my_strtol_interceptor\n");
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
char *x = (char*)malloc(10 * sizeof(char));
|
|
free(x);
|
|
return (int)strtol(x, 0, 10);
|
|
// CHECK: my_strtol_interceptor
|
|
// CHECK-NOT: heap-use-after-free
|
|
}
|