Alexey Samsonov | 13f89cd | 2013-06-28 15:52:44 +0000 | [diff] [blame] | 1 | // RUN: %clangxx_asan -O0 %s -o %t && not %t 2>%t.out |
Alexey Samsonov | 9fe914b | 2012-08-15 11:26:57 +0000 | [diff] [blame] | 2 | // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out |
Alexey Samsonov | 13f89cd | 2013-06-28 15:52:44 +0000 | [diff] [blame] | 3 | // RUN: %clangxx_asan -O1 %s -o %t && not %t 2>%t.out |
Alexey Samsonov | 9fe914b | 2012-08-15 11:26:57 +0000 | [diff] [blame] | 4 | // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out |
Alexey Samsonov | 13f89cd | 2013-06-28 15:52:44 +0000 | [diff] [blame] | 5 | // RUN: %clangxx_asan -O2 %s -o %t && not %t 2>%t.out |
Alexey Samsonov | 9fe914b | 2012-08-15 11:26:57 +0000 | [diff] [blame] | 6 | // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out |
Alexey Samsonov | 13f89cd | 2013-06-28 15:52:44 +0000 | [diff] [blame] | 7 | // RUN: %clangxx_asan -O3 %s -o %t && not %t 2>%t.out |
Alexey Samsonov | 9fe914b | 2012-08-15 11:26:57 +0000 | [diff] [blame] | 8 | // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out |
Alexey Samsonov | 6016486 | 2012-08-15 08:29:17 +0000 | [diff] [blame] | 9 | |
| 10 | #include <stdlib.h> |
| 11 | #include <string.h> |
| 12 | int 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 Samsonov | cc51070 | 2013-07-01 08:41:45 +0000 | [diff] [blame^] | 17 | // CHECK: {{ #0 0x.* in main .*heap-overflow.cc:}}[[@LINE-2]] |
Alexey Samsonov | 6016486 | 2012-08-15 08:29:17 +0000 | [diff] [blame] | 18 | // 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 Samsonov | 889e3ab | 2013-06-07 09:38:55 +0000 | [diff] [blame] | 22 | // CHECK-Linux: {{ #1 0x.* in main .*heap-overflow.cc:13}} |
Alexey Samsonov | 6016486 | 2012-08-15 08:29:17 +0000 | [diff] [blame] | 23 | |
Alexey Samsonov | cc51070 | 2013-07-01 08:41:45 +0000 | [diff] [blame^] | 24 | // CHECK-Darwin: {{ #0 0x.* in wrap_malloc.*}} |
| 25 | // CHECK-Darwin: {{ #1 0x.* in main .*heap-overflow.cc:13}} |
Alexey Samsonov | 6016486 | 2012-08-15 08:29:17 +0000 | [diff] [blame] | 26 | free(x); |
| 27 | return res; |
| 28 | } |