diff options
author | Chris Bieneman <beanz@apple.com> | 2016-04-29 22:44:33 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-04-29 22:44:33 +0000 |
commit | bd61e0b4a859b1a5af3df1d9beaf3e2efe0a9a20 (patch) | |
tree | 2284048cda893d52159aa94dea0e7e37bc990d1d | |
parent | e60e7c2987f18373ee8e8b1ac1ed3ee964c3c40a (diff) | |
download | bcm5719-llvm-bd61e0b4a859b1a5af3df1d9beaf3e2efe0a9a20.tar.gz bcm5719-llvm-bd61e0b4a859b1a5af3df1d9beaf3e2efe0a9a20.zip |
Fix test case for incompatible sysroot warning
r268127 broke some bots because it needs to specify a darwin target.
llvm-svn: 268128
-rw-r--r-- | clang/test/Driver/incompatible_sysroot.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/Driver/incompatible_sysroot.c b/clang/test/Driver/incompatible_sysroot.c index 6550ae1dd4b..2efd3ae92a6 100644 --- a/clang/test/Driver/incompatible_sysroot.c +++ b/clang/test/Driver/incompatible_sysroot.c @@ -1,8 +1,8 @@ -// RUN: %clang -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 -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 -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mtvos-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-IOS-TVOS %s -// RUN: %clang -Wincompatible-sysroot -isysroot SDKs/iPhoneSimulator9.2.sdk -mios-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-IOS-IOSSIM %s -// RUN: %clang -Wno-incompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mios-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-OSX-IOS-DISABLED %s +// 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 +// RUN: %clang -target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneSimulator9.2.sdk -mios-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-IOS-IOSSIM %s +// RUN: %clang -target x86_64-apple-darwin -Wno-incompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mios-version-min=9.0 -S -o - %s 2>&1 | FileCheck -check-prefix CHECK-OSX-IOS-DISABLED %s int main() { return 0; } // CHECK-OSX-IOS: warning: using sysroot for 'MacOSX' but targeting 'iPhone' |