[compiler-rt] r250063 - [ubsan] Invoke test program using %run.

Filipe Cabecinhas via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 12 09:33:40 PDT 2015


Author: filcab
Date: Mon Oct 12 11:33:40 2015
New Revision: 250063

URL: http://llvm.org/viewvc/llvm-project?rev=250063&view=rev
Log:
[ubsan] Invoke test program using %run.

Modified:
    compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp

Modified: compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp?rev=250063&r1=250062&r2=250063&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp Mon Oct 12 11:33:40 2015
@@ -1,6 +1,6 @@
 // RUN: %clangxx -fsanitize=integer %s -o %t
 // RUN: %t 2>&1 | FileCheck %s --check-prefix=CHECK-NOTYPE
-// RUN: %env_ubsan_opts=report_error_type=1 %t 2>&1 | FileCheck %s --check-prefix=CHECK-TYPE
+// RUN: %env_ubsan_opts=report_error_type=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-TYPE
 // REQUIRES: ubsan-asan
 
 #include <stdint.h>




More information about the llvm-commits mailing list