From b8aae5405b968753461082c0d78308b91f113256 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Wed, 30 Apr 2014 21:34:17 +0000 Subject: Add %run to all lit tests llvm-svn: 207709 --- compiler-rt/test/asan/TestCases/use-after-free-right.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'compiler-rt/test/asan/TestCases/use-after-free-right.cc') diff --git a/compiler-rt/test/asan/TestCases/use-after-free-right.cc b/compiler-rt/test/asan/TestCases/use-after-free-right.cc index 88d91f53d24..99525a5e45e 100644 --- a/compiler-rt/test/asan/TestCases/use-after-free-right.cc +++ b/compiler-rt/test/asan/TestCases/use-after-free-right.cc @@ -1,7 +1,7 @@ -// RUN: %clangxx_asan -O0 %s -o %t && not %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK -// RUN: %clangxx_asan -O1 %s -o %t && not %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK -// RUN: %clangxx_asan -O2 %s -o %t && not %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK -// RUN: %clangxx_asan -O3 %s -o %t && not %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK +// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK +// RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK +// RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK +// RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK // Test use-after-free report in the case when access is at the right border of // the allocation. -- cgit v1.2.1