diff options
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/TestCases/Darwin/malloc_zone-protected.cc')
| -rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/Darwin/malloc_zone-protected.cc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/Darwin/malloc_zone-protected.cc b/compiler-rt/lib/asan/lit_tests/TestCases/Darwin/malloc_zone-protected.cc deleted file mode 100644 index d5f6c7c12e6..00000000000 --- a/compiler-rt/lib/asan/lit_tests/TestCases/Darwin/malloc_zone-protected.cc +++ /dev/null @@ -1,20 +0,0 @@ -// Make sure the zones created by malloc_create_zone() are write-protected. -#include <malloc/malloc.h> -#include <stdio.h> - -// RUN: %clangxx_asan %s -o %t -// RUN: not %t 2>&1 | FileCheck %s - - -void *pwn(malloc_zone_t *unused_zone, size_t unused_size) { - printf("PWNED\n"); - return NULL; -} - -int main() { - malloc_zone_t *zone = malloc_create_zone(0, 0); - zone->malloc = pwn; - void *v = malloc_zone_malloc(zone, 1); - // CHECK-NOT: PWNED - return 0; -} |

