[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / compiler-rt / test / gwp_asan / repeated_alloc.cpp
blob41d294c87f610be67d9824ee0f67f43ac32c416b
1 // REQUIRES: gwp_asan
2 // This test ensures that normal allocation/memory access/deallocation works
3 // as expected and we didn't accidentally break the supporting allocator.
5 // RUN: %clangxx_gwp_asan %s -o %t
6 // RUN: %env_scudo_options=GWP_ASAN_MaxSimultaneousAllocations=1 %run %t
7 // RUN: %env_scudo_options=GWP_ASAN_MaxSimultaneousAllocations=2 %run %t
8 // RUN: %env_scudo_options=GWP_ASAN_MaxSimultaneousAllocations=11 %run %t
9 // RUN: %env_scudo_options=GWP_ASAN_MaxSimultaneousAllocations=12 %run %t
10 // RUN: %env_scudo_options=GWP_ASAN_MaxSimultaneousAllocations=13 %run %t
12 #include <cstdlib>
14 int main() {
15 void* Pointers[16];
16 for (unsigned i = 0; i < 16; ++i) {
17 char *Ptr = reinterpret_cast<char*>(malloc(1 << i));
18 Pointers[i] = Ptr;
19 *Ptr = 0;
20 Ptr[(1 << i) - 1] = 0;
23 for (unsigned i = 0; i < 16; ++i) {
24 free(Pointers[i]);
27 return 0;