As many other ASan tests already, has to disable these failing tests on arm, armhf and aarch64 configs. Differential Revision: https://reviews.llvm.org/D44404 llvm-svn: 328849
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
// RUN: %clangxx_asan %s -o %t
|
|
// RUN: ASAN_OPTIONS=allocator_may_return_null=0 not %run %t m1 2>&1 | FileCheck %s
|
|
// RUN: ASAN_OPTIONS=allocator_may_return_null=1 %run %t m1 2>&1
|
|
// RUN: ASAN_OPTIONS=allocator_may_return_null=0 not %run %t psm1 2>&1 | FileCheck %s
|
|
// RUN: ASAN_OPTIONS=allocator_may_return_null=1 %run %t psm1 2>&1
|
|
|
|
// UNSUPPORTED: freebsd, android
|
|
|
|
// REQUIRES: stable-runtime
|
|
|
|
// Checks that pvalloc overflows are caught. If the allocator is allowed to
|
|
// return null, the errno should be set to ENOMEM.
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <malloc.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
void *p;
|
|
size_t page_size;
|
|
|
|
assert(argc == 2);
|
|
|
|
page_size = sysconf(_SC_PAGESIZE);
|
|
|
|
if (!strcmp(argv[1], "m1")) {
|
|
p = pvalloc((uintptr_t)-1);
|
|
assert(!p);
|
|
assert(errno == ENOMEM);
|
|
}
|
|
if (!strcmp(argv[1], "psm1")) {
|
|
p = pvalloc((uintptr_t)-(page_size - 1));
|
|
assert(!p);
|
|
assert(errno == ENOMEM);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: {{ERROR: AddressSanitizer: pvalloc parameters overflow: size .* rounded up to system page size .* cannot be represented in type size_t}}
|
|
// CHECK: {{#0 0x.* in .*pvalloc}}
|
|
// CHECK: {{#1 0x.* in main .*pvalloc-overflow.cc:}}
|
|
// CHECK: SUMMARY: AddressSanitizer: pvalloc-overflow
|