summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2019-10-04 00:43:05 +0000
committerVitaly Buka <vitalybuka@google.com>2019-10-04 00:43:05 +0000
commit272c4f3f4656a6308f98a5c738e03995def59e0f (patch)
tree314a314fc584eef056f67e94c25861cdcb48b3a3
parent0376cd8c6878bc8f8dacb570c0c2eeee67b866d6 (diff)
downloadcompiler-rt-272c4f3f4656a6308f98a5c738e03995def59e0f.tar.gz
[compiler-rt] Fix signal_line.cpp test
r373682 committed wrong experimental version git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@373684 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/sanitizer_common/TestCases/Linux/signal_line.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sanitizer_common/TestCases/Linux/signal_line.cpp b/test/sanitizer_common/TestCases/Linux/signal_line.cpp
index 3a5fe329d..73a45ef4d 100644
--- a/test/sanitizer_common/TestCases/Linux/signal_line.cpp
+++ b/test/sanitizer_common/TestCases/Linux/signal_line.cpp
@@ -1,11 +1,11 @@
// Test line numbers in signal handlers
// RUN: %clangxx %s -o %t -O0
-// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 1 2>&1 | FileCheck --check-prefixes=CHECK2,CHECK %s
+// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 1 2>&1 | FileCheck --check-prefixes=CHECK1,CHECK %s
// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 2 2>&1 | FileCheck --check-prefixes=CHECK2,CHECK %s
// RUN: %clangxx %s -o %t -O1
-// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 1 2>&1 | FileCheck --check-prefixes=CHECK2,CHECK %s
+// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 1 2>&1 | FileCheck --check-prefixes=CHECK1,CHECK %s
// RUN: %env_tool_opts=handle_segv=1:print_stacktrace=1 not %run %t 2 2>&1 | FileCheck --check-prefixes=CHECK2,CHECK %s
#include <cstdio>