blob: 740cecee15c0cebdf8e914baf428d5eade39d530 [file] [log] [blame]
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -07001// Check that without suppressions, we catch the issue.
2// RUN: %clangxx_asan -O0 %s -o %t
3// RUN: not %run %t 2>&1 | FileCheck --check-prefix=CHECK-CRASH %s
4
5// If the executable is started from a different location, we should still
6// find the suppression file located relative to the location of the executable.
7// RUN: rm -rf %T/suppressions-exec-relative-location
8// RUN: mkdir -p %T/suppressions-exec-relative-location
9// RUN: %clangxx_asan -O0 %s -o %T/suppressions-exec-relative-location/exec
10// RUN: echo "interceptor_via_fun:crash_function" > \
11// RUN: %T/suppressions-exec-relative-location/supp.txt
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080012// RUN: %env_asan_opts=suppressions='"supp.txt"' \
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070013// RUN: %run %T/suppressions-exec-relative-location/exec 2>&1 | \
14// RUN: FileCheck --check-prefix=CHECK-IGNORE %s
15// RUN: rm -rf %T/suppressions-exec-relative-location
16
17// If the wrong absolute path is given, we don't try to construct
18// a relative path with it.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080019// RUN: %env_asan_opts=suppressions='"/absolute/path"' not %run %t 2>&1 | \
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070020// RUN: FileCheck --check-prefix=CHECK-WRONG-FILE-NAME %s
21
22// Test that we reject directory as filename.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080023// RUN: %env_asan_opts=suppressions='"folder/only/"' not %run %t 2>&1 | \
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070024// RUN: FileCheck --check-prefix=CHECK-WRONG-FILE-NAME %s
25
26// XFAIL: android
27// XFAIL: win32
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32
33void crash_function() {
34 char *a = (char *)malloc(6);
35 free(a);
36 size_t len = strlen(a); // BOOM
37 fprintf(stderr, "strlen ignored, len = %zu\n", len);
38}
39
40int main() {
41 crash_function();
42}
43
44// CHECK-CRASH: AddressSanitizer: heap-use-after-free
45// CHECK-IGNORE-NOT: AddressSanitizer: heap-buffer-overflow
46// CHECK-IGNORE: ignored
47// CHECK-WRONG-FILE-NAME: failed to read suppressions file