aboutsummaryrefslogblamecommitdiff
path: root/test/asan/TestCases/halt_on_error-1.c
blob: 63c65e58bb71b3a251e39961cd61567b370aeca8 (plain) (tree)




























                                                                                                   
// Test recovery mode.
//
// RUN: %clang_asan -fsanitize-recover=address %s -o %t
//
// RUN: env not %run %t 2>&1 | FileCheck %s
// RUN: %env_asan_opts=halt_on_error=true not %run %t 2>&1 | FileCheck %s
// RUN: %env_asan_opts=halt_on_error=false %run %t 2>&1 | FileCheck %s --check-prefix CHECK-RECOVER

#include <string.h>

volatile int ten = 10;

int main() {
  char x[10];
  // CHECK: WRITE of size 11
  // CHECK-RECOVER: WRITE of size 11
  memset(x, 0, 11);
  // CHECK-NOT: READ of size 1
  // CHECK-RECOVER: READ of size 1
  volatile int res = x[ten];
  // CHECK-NOT: WRITE of size 1
  // CHECK-RECOVER: WRITE of size 1
  x[ten] = res + 3;
  // CHECK-NOT: READ of size 1
  // CHECK-RECOVER: READ of size 1
  res = x[ten];
  return  0;
}