From 8d10a87363126ac8cd602078155b4db44d16d8cb Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Tue, 26 Sep 2017 04:17:37 +0000 Subject: [PATCH] [XRay] Run command once without piping to FileCheck This allows us to debug the failures that come up from the build bots. Follow-up to D38226. llvm-svn: 314193 --- clang/test/Driver/XRay/xray-shared-noxray.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clang/test/Driver/XRay/xray-shared-noxray.cpp b/clang/test/Driver/XRay/xray-shared-noxray.cpp index 19e526a7d80a..0278e0e2ae2f 100644 --- a/clang/test/Driver/XRay/xray-shared-noxray.cpp +++ b/clang/test/Driver/XRay/xray-shared-noxray.cpp @@ -1,5 +1,7 @@ +// RUN: %clangxx -shared -o /dev/null -v -fxray-instrument %s // RUN: %clangxx -shared -o /dev/null -v -fxray-instrument %s 2>&1 | \ // RUN: FileCheck %s --check-prefix=SHARED +// RUN: %clangxx -static -o /dev/null -v -fxray-instrument %s -DMAIN // RUN: %clangxx -static -o /dev/null -v -fxray-instrument %s 2>&1 -DMAIN | \ // RUN: FileCheck %s --check-prefix=STATIC //