r292897 - [test] Replace `REQUIRES-ANY: a, b, c` with `REQUIRES: a || b || c`.

Greg Parker via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 24 00:47:25 PST 2017


Author: gparker
Date: Tue Jan 24 02:47:25 2017
New Revision: 292897

URL: http://llvm.org/viewvc/llvm-project?rev=292897&view=rev
Log:
[test] Replace `REQUIRES-ANY: a, b, c` with `REQUIRES: a || b || c`.

Requires the new `lit` boolean expressions in LLVM r292896.

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

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=292897&r1=292896&r2=292897&view=diff
==============================================================================
--- cfe/trunk/test/Driver/XRay/xray-instrument-os.c (original)
+++ cfe/trunk/test/Driver/XRay/xray-instrument-os.c Tue Jan 24 02:47:25 2017
@@ -1,4 +1,4 @@
 // RUN: not %clang -o /dev/null -v -fxray-instrument -c %s
 // XFAIL: -linux-
-// REQUIRES-ANY: amd64, x86_64, x86_64h, arm, aarch64, arm64
+// REQUIRES: amd64 || x86_64 || x86_64h || arm || aarch64 || arm64
 typedef int a;




More information about the cfe-commits mailing list