From: Benjamin Kramer Date: Thu, 27 Oct 2016 08:49:18 +0000 (+0000) Subject: [Xray] Don't generate output for xray tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8e31c9bb6dc5e8a1b51f56ff675ebdbf92fcf16;p=clang [Xray] Don't generate output for xray tests Patch by Sam McCall! Differential Revision: http://reviews.llvm.org/D26024 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285276 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/XRay/xray-instrument-cpu.c b/test/Driver/XRay/xray-instrument-cpu.c index 377459aab9..a686377d28 100644 --- a/test/Driver/XRay/xray-instrument-cpu.c +++ b/test/Driver/XRay/xray-instrument-cpu.c @@ -1,4 +1,4 @@ -// RUN: not %clang -v -fxray-instrument -c %s +// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: amd64-, x86_64-, x86_64h-, arm // REQUIRES: linux typedef int a; diff --git a/test/Driver/XRay/xray-instrument-os.c b/test/Driver/XRay/xray-instrument-os.c index 0802d28d30..3b99203090 100644 --- a/test/Driver/XRay/xray-instrument-os.c +++ b/test/Driver/XRay/xray-instrument-os.c @@ -1,4 +1,4 @@ -// RUN: not %clang -v -fxray-instrument -c %s +// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: -linux- // REQUIRES-ANY: amd64, x86_64, x86_64h, arm typedef int a;