aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/sanity_check_pure_c.c
blob: 3d830653e33e2104224105cdfaec6c8906a75abb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Sanity checking a test in pure C.
// RUN: %clang -g -fsanitize=address -O2 %s -o %t
// RUN: %t 2>&1 | %symbolize | FileCheck %s

// Sanity checking a test in pure C with -pie.
// RUN: %clang -g -fsanitize=address -O2 %s -pie -o %t
// RUN: %t 2>&1 | %symbolize | FileCheck %s

#include <stdlib.h>
int main() {
  char *x = (char*)malloc(10 * sizeof(char));
  free(x);
  return x[5];
  // CHECK: heap-use-after-free
  // CHECK: free
  // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-4]]
  // CHECK: malloc
  // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-7]]
}