blob: 664b2646d7794cb77c488171d78e5aac6bc98472 [file] [log] [blame]
Alexey Samsonov889e3ab2013-06-07 09:38:55 +00001// RUN: %clangxx_asan -O0 %s -o %t && %t 2>&1 | %symbolize > %t.out
Alexey Samsonov9fe914b2012-08-15 11:26:57 +00002// RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out
Alexey Samsonov889e3ab2013-06-07 09:38:55 +00003// RUN: %clangxx_asan -O1 %s -o %t && %t 2>&1 | %symbolize > %t.out
Alexey Samsonov9fe914b2012-08-15 11:26:57 +00004// RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out
Alexey Samsonov889e3ab2013-06-07 09:38:55 +00005// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | %symbolize > %t.out
Alexey Samsonov9fe914b2012-08-15 11:26:57 +00006// RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out
Alexey Samsonov889e3ab2013-06-07 09:38:55 +00007// RUN: %clangxx_asan -O3 %s -o %t && %t 2>&1 | %symbolize > %t.out
Alexey Samsonov9fe914b2012-08-15 11:26:57 +00008// RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out
Alexey Samsonov60164862012-08-15 08:29:17 +00009
10#include <stdlib.h>
11#include <string.h>
12int main(int argc, char **argv) {
13 char *x = (char*)malloc(10 * sizeof(char));
14 memset(x, 0, 10);
15 int res = x[argc * 10]; // BOOOM
16 // CHECK: {{READ of size 1 at 0x.* thread T0}}
Alexey Samsonovf96bfd82012-12-28 08:38:09 +000017 // CHECK: {{ #0 0x.* in _?main .*heap-overflow.cc:}}[[@LINE-2]]
Alexey Samsonov60164862012-08-15 08:29:17 +000018 // CHECK: {{0x.* is located 0 bytes to the right of 10-byte region}}
19 // CHECK: {{allocated by thread T0 here:}}
20
21 // CHECK-Linux: {{ #0 0x.* in .*malloc}}
Alexey Samsonov889e3ab2013-06-07 09:38:55 +000022 // CHECK-Linux: {{ #1 0x.* in main .*heap-overflow.cc:13}}
Alexey Samsonov60164862012-08-15 08:29:17 +000023
Alexander Potapenkocae42d22013-01-22 09:14:54 +000024 // CHECK-Darwin: {{ #0 0x.* in _?wrap_malloc.*}}
Alexey Samsonov889e3ab2013-06-07 09:38:55 +000025 // CHECK-Darwin: {{ #1 0x.* in _?main .*heap-overflow.cc:13}}
Alexey Samsonov60164862012-08-15 08:29:17 +000026 free(x);
27 return res;
28}