forked from OSchip/llvm-project
17 lines
430 B
C++
17 lines
430 B
C++
// Check that we properly report mmap failure.
|
|
// RUN: %clangxx_asan %s -o %t && %t 2>&1 | FileCheck %s
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include <sys/time.h>
|
|
#include <sys/resource.h>
|
|
|
|
static volatile void *x;
|
|
|
|
int main(int argc, char **argv) {
|
|
struct rlimit mmap_resource_limit = { 0, 0 };
|
|
assert(0 == setrlimit(RLIMIT_AS, &mmap_resource_limit));
|
|
x = malloc(10000000);
|
|
// CHECK: ERROR: Failed to mmap
|
|
return 0;
|
|
}
|