summaryrefslogtreecommitdiff
path: root/test/ubsan/TestCases/TypeCheck/null.cpp
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2014-07-29 00:30:01 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2014-07-29 00:30:01 +0000
commitf6c4be8c3725ad81c7d4b43517fd5d919a4f4240 (patch)
treeabc2c7b5d93da3d532bbf7a03f62b04ccb109cca /test/ubsan/TestCases/TypeCheck/null.cpp
parent4cac71682e747a3ab9d507a84be9ce3696294081 (diff)
[UBSan] Try to enable pipefail in UBSan lit tests to make them behave more predictably
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@214149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ubsan/TestCases/TypeCheck/null.cpp')
-rw-r--r--test/ubsan/TestCases/TypeCheck/null.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ubsan/TestCases/TypeCheck/null.cpp b/test/ubsan/TestCases/TypeCheck/null.cpp
index 47f5270e5..2a90f7fb9 100644
--- a/test/ubsan/TestCases/TypeCheck/null.cpp
+++ b/test/ubsan/TestCases/TypeCheck/null.cpp
@@ -1,6 +1,6 @@
// RUN: %clangxx -fsanitize=null %s -O3 -o %t
// RUN: %run %t l 2>&1 | FileCheck %s --check-prefix=CHECK-LOAD
-// RUN: %run %t s 2>&1 | FileCheck %s --check-prefix=CHECK-STORE
+// RUN: not --crash %run %t s 2>&1 | FileCheck %s --check-prefix=CHECK-STORE
// RUN: %run %t r 2>&1 | FileCheck %s --check-prefix=CHECK-REFERENCE
// RUN: %run %t m 2>&1 | FileCheck %s --check-prefix=CHECK-MEMBER
// RUN: %run %t f 2>&1 | FileCheck %s --check-prefix=CHECK-MEMFUN