diff options
author | Chris Bieneman <beanz@apple.com> | 2016-04-30 05:27:17 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-04-30 05:27:17 +0000 |
commit | eb5bd02a7ec2c0a5d10d8f68c5c40c00776824fb (patch) | |
tree | 41b6031ec00d8adc0400a40b417cb811440fdbdc /clang/test | |
parent | c198d3344eb66276e95e2706935fd9ee1e387876 (diff) | |
download | bcm5719-llvm-eb5bd02a7ec2c0a5d10d8f68c5c40c00776824fb.tar.gz bcm5719-llvm-eb5bd02a7ec2c0a5d10d8f68c5c40c00776824fb.zip |
Stab in the dark to fix the PS4 bot
r268127 is causing the PS4 bots to fail. Not sure what is causing it, but hopefully this will fix it.
llvm-svn: 268156
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Driver/incompatible_sysroot.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Driver/incompatible_sysroot.c b/clang/test/Driver/incompatible_sysroot.c index 2efd3ae92a6..876f1f058dc 100644 --- a/clang/test/Driver/incompatible_sysroot.c +++ b/clang/test/Driver/incompatible_sysroot.c @@ -1,3 +1,6 @@ +// REQUIRES: x86-registered-target +// REQUIRES: aarch64-registered-target + // RUN: %clang -target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mios-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-OSX-IOS %s // RUN: %clang -target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mwatchos-version-min=2.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-IOS-WATCHOS %s // RUN: %clang -target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mtvos-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-IOS-TVOS %s |