r285276 - [Xray] Don't generate output for xray tests

Benjamin Kramer via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 27 01:49:18 PDT 2016


Author: d0k
Date: Thu Oct 27 03:49:18 2016
New Revision: 285276

URL: http://llvm.org/viewvc/llvm-project?rev=285276&view=rev
Log:
[Xray] Don't generate output for xray tests

Patch by Sam McCall!

Differential Revision: http://reviews.llvm.org/D26024

Modified:
    cfe/trunk/test/Driver/XRay/xray-instrument-cpu.c
    cfe/trunk/test/Driver/XRay/xray-instrument-os.c

Modified: cfe/trunk/test/Driver/XRay/xray-instrument-cpu.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/XRay/xray-instrument-cpu.c?rev=285276&r1=285275&r2=285276&view=diff
==============================================================================
--- cfe/trunk/test/Driver/XRay/xray-instrument-cpu.c (original)
+++ cfe/trunk/test/Driver/XRay/xray-instrument-cpu.c Thu Oct 27 03:49:18 2016
@@ -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;

Modified: cfe/trunk/test/Driver/XRay/xray-instrument-os.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/XRay/xray-instrument-os.c?rev=285276&r1=285275&r2=285276&view=diff
==============================================================================
--- cfe/trunk/test/Driver/XRay/xray-instrument-os.c (original)
+++ cfe/trunk/test/Driver/XRay/xray-instrument-os.c Thu Oct 27 03:49:18 2016
@@ -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;




More information about the cfe-commits mailing list