1// Make sure we report atexit stats.
2// RUN: %clangxx_asan -O3 %s -o %t
3// RUN: env ASAN_OPTIONS=atexit=1:print_stats=1 %run %t 2>&1 | FileCheck %s
4//
5// No atexit output on Android due to
6// https://code.google.com/p/address-sanitizer/issues/detail?id=263
7// XFAIL: android
8
9#include <stdlib.h>
10#if !defined(__APPLE__)
11#include <malloc.h>
12#endif
13int *p1 = (int*)malloc(900);
14int *p2 = (int*)malloc(90000);
15int *p3 = (int*)malloc(9000000);
16int main() { }
17
18// CHECK: AddressSanitizer exit stats:
19