From c0875f9e196d4b2aacf5678edb1e4a7dd2443d1a Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Sat, 30 Apr 2016 05:27:17 +0000 Subject: [PATCH] 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@268156 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Driver/incompatible_sysroot.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Driver/incompatible_sysroot.c b/test/Driver/incompatible_sysroot.c index 2efd3ae92a..876f1f058d 100644 --- a/test/Driver/incompatible_sysroot.c +++ b/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 -- 2.40.0