From: Alex Lorenz Date: Thu, 9 May 2019 20:35:41 +0000 (+0000) Subject: NFC, make XFAIL work on macOS correctly for test/Driver/XRay/xray-instrument-os.c X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7742fbb68c1c5658c0f18143fc29ebcf3b46a0bb;p=clang 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 --- 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;