summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/strip_path_prefix.c
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2015-03-02 18:55:46 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2015-03-02 18:55:46 +0000
commitc9870a6ac5a03232b9bfb24911ef47bdf0fa3083 (patch)
tree5f5df215bbe0a0c6e12c86da01ccbf26759541e5 /test/asan/TestCases/strip_path_prefix.c
parent6f95df4eee48e723a14f14b4d6f25212b221c845 (diff)
[Sanitizer] Fix StripPathPrefix function and improve test case.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@230986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan/TestCases/strip_path_prefix.c')
-rw-r--r--test/asan/TestCases/strip_path_prefix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/asan/TestCases/strip_path_prefix.c b/test/asan/TestCases/strip_path_prefix.c
index 4556e9031..c441eac92 100644
--- a/test/asan/TestCases/strip_path_prefix.c
+++ b/test/asan/TestCases/strip_path_prefix.c
@@ -1,5 +1,5 @@
// RUN: %clang_asan -O2 %s -o %t
-// RUN: env ASAN_OPTIONS="strip_path_prefix='/'" not %run %t 2>&1 | FileCheck %s
+// RUN: env ASAN_OPTIONS="strip_path_prefix='%S/'" not %run %t 2>&1 | FileCheck %s
#include <stdlib.h>
int main() {
@@ -8,5 +8,5 @@ int main() {
return x[5];
// Check that paths in error report don't start with slash.
// CHECK: heap-use-after-free
- // CHECK-NOT: #0 0x{{.*}} ({{[/].*}})
+ // CHECK: #0 0x{{.*}} in main strip_path_prefix.c:[[@LINE-3]]
}