[lsan] Disable clang-format on few RUN: statements

llvm-svn: 313321
This commit is contained in:
Vitaly Buka 2017-09-15 00:02:30 +00:00
parent bae9b8ea2b
commit f716931bb2
3 changed files with 12 additions and 1 deletions

View File

@ -1,8 +1,12 @@
// Test the handle_abort option.
// clang-format off
// RUN: %clang %s -o %t
// RUN: not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
// RUN: %env_tool_opts=handle_abort=0 not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
// RUN: %env_tool_opts=handle_abort=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK1 %s
// clang-format on
// FIXME: implement in other sanitizers, not just asan.
// XFAIL: msan
// XFAIL: lsan

View File

@ -1,8 +1,12 @@
// Test the handle_sigill option.
// clang-format off
// RUN: %clang %s -o %t -O1
// RUN: not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
// RUN: %env_tool_opts=handle_sigill=0 not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
// RUN: %env_tool_opts=handle_sigill=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK1 %s
// clang-format on
// FIXME: implement in other sanitizers, not just asan.
// XFAIL: msan
// XFAIL: lsan

View File

@ -1,9 +1,12 @@
// Check that sanitizer prints the faulting instruction bytes on
// dump_instruction_bytes=1
// clang-format off
// RUN: %clangxx %s -o %t
// RUN: %env_tool_opts=dump_instruction_bytes=1 not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-DUMP
// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NODUMP
//
// clang-format on
// REQUIRES: x86-target-arch
// XFAIL: lsan, msan, tsan, ubsan