summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/print_summary.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/print_summary.cc')
-rw-r--r--test/asan/TestCases/print_summary.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/asan/TestCases/print_summary.cc b/test/asan/TestCases/print_summary.cc
index 949c9b54f..a2f1257c9 100644
--- a/test/asan/TestCases/print_summary.cc
+++ b/test/asan/TestCases/print_summary.cc
@@ -1,6 +1,6 @@
// RUN: %clangxx_asan -O0 %s -o %t
-// RUN: not %t 2>&1 | FileCheck %s --check-prefix=YES
-// RUN: ASAN_OPTIONS=print_summary=false not %t 2>&1 | FileCheck %s --check-prefix=NO
+// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=YES
+// RUN: ASAN_OPTIONS=print_summary=false not %run %t 2>&1 | FileCheck %s --check-prefix=NO
int main() {
char *x = new char[20];