[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
This commit is contained in:
Dean Michael Berris 2017-09-26 04:17:37 +00:00
parent 68b3acc4b8
commit 8d10a87363
1 changed files with 2 additions and 0 deletions

View File

@ -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
//