diff options
author | Alex Lorenz <arphaman@gmail.com> | 2019-05-09 20:35:41 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2019-05-09 20:35:41 +0000 |
commit | dee161fb3848a23e5de5393c916301a50ecae903 (patch) | |
tree | 772c38a60e5ddc2e2c06e204b6cf89bd44167be1 | |
parent | 46b9d19cc09a7073eabb36c639056db72169b145 (diff) | |
download | bcm5719-llvm-dee161fb3848a23e5de5393c916301a50ecae903.tar.gz bcm5719-llvm-dee161fb3848a23e5de5393c916301a50ecae903.zip |
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.
llvm-svn: 360374
-rw-r--r-- | clang/test/Driver/XRay/xray-instrument-os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/XRay/xray-instrument-os.c b/clang/test/Driver/XRay/xray-instrument-os.c index 1008d0aff6f..3a0c428ce19 100644 --- a/clang/test/Driver/XRay/xray-instrument-os.c +++ b/clang/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; |