Index: compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp =================================================================== --- compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp +++ compiler-rt/trunk/test/ubsan/TestCases/Integer/summary.cpp @@ -1,5 +1,5 @@ // RUN: %clangxx -fsanitize=integer %s -o %t -// RUN: %t 2>&1 | FileCheck %s --check-prefix=CHECK-NOTYPE +// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NOTYPE // RUN: %env_ubsan_opts=report_error_type=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-TYPE // REQUIRES: ubsan-asan Index: compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/ubsan_options.cc =================================================================== --- compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/ubsan_options.cc +++ compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/ubsan_options.cc @@ -1,5 +1,5 @@ // RUN: %clangxx -fsanitize=integer -fsanitize-recover=integer %s -o %t -// RUN: not %t 2>&1 | FileCheck %s +// RUN: not %run %t 2>&1 | FileCheck %s // __ubsan_default_options() doesn't work on Darwin. // XFAIL: darwin