summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lorenz <arphaman@gmail.com>2019-05-09 20:35:41 +0000
committerAlex Lorenz <arphaman@gmail.com>2019-05-09 20:35:41 +0000
commit7742fbb68c1c5658c0f18143fc29ebcf3b46a0bb (patch)
treeb73476b5017e51ae4d5a6c4b2d07c8a655f7f424
parent0446a431cf5657f55e363f18cc79198f10f7684c (diff)
downloadclang-7742fbb68c1c5658c0f18143fc29ebcf3b46a0bb.tar.gz
NFC, make XFAIL work on macOS correctly for test/Driver/XRay/xray-instrument-os.c
The test 'test/Driver/XRay/xray-instrument-os.c' is supposed to XFAIL on -darwin triples. However, LLVM can be configured to be built with a -macos triple instead, which is equivalent to -darwin. This commit updates the XFAIL condition to also XFAIL with a -macos host triple. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360374 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Driver/XRay/xray-instrument-os.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Driver/XRay/xray-instrument-os.c b/test/Driver/XRay/xray-instrument-os.c
index 1008d0aff6..3a0c428ce1 100644
--- a/test/Driver/XRay/xray-instrument-os.c
+++ b/test/Driver/XRay/xray-instrument-os.c
@@ -1,4 +1,4 @@
// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s
-// XFAIL: -linux-, -freebsd, -darwin
+// XFAIL: -linux-, -freebsd, -darwin, -macos
// REQUIRES-ANY: amd64, x86_64, x86_64h, arm, aarch64, arm64
typedef int a;