summaryrefslogtreecommitdiff
path: root/compiler-rt/test/asan/TestCases/Windows/heapalloc_huge.cpp
blob: 8514be34bf29b2b657dadbe59772a72aad2d1773 (plain)
1
2
3
4
5
6
7
8
9
10
11
// UNSUPPORTED: target={{.*-windows-gnu}}

// RUN: %clang_cl_asan -Od %s -Fe%t
// RUN: %env_asan_opts=allocator_may_return_null=true %run %t
// RUN: %env_asan_opts=allocator_may_return_null=true:windows_hook_rtl_allocators=true %run %t
// UNSUPPORTED: asan-64-bits
#include <windows.h>
int main() {
  void *nope = HeapAlloc(GetProcessHeap(), 0, ((size_t)0) - 1);
  return (nope == nullptr) ? 0 : 1;
}