Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple armv6-apple-ios3.0.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 2 | // RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '30000' | count 1 |
Rafael Espindola | be8a91b | 2013-07-04 15:22:16 +0000 | [diff] [blame] | 3 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 -triple armv6-apple-ios2.0.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 5 | // RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '20000' | count 1 |
Rafael Espindola | be8a91b | 2013-07-04 15:22:16 +0000 | [diff] [blame] | 6 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 7 | // RUN: %clang_cc1 -triple armv6-apple-ios2.2.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 8 | // RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '20200' | count 1 |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 9 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
| 10 | // RUN: %clang_cc1 -triple armv6-apple-ios2.3.1 -dM -E -o %t %s |
| 11 | // RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '20301' | count 1 |
| 12 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
Bob Wilson | 4cf27c4 | 2016-07-18 20:29:14 +0000 | [diff] [blame] | 13 | // RUN: %clang_cc1 -triple armv7-apple-ios10.1.2 -dM -E -o %t %s |
| 14 | // RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '100102' | count 1 |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 15 | // RUN: %clang_cc1 -triple i386-apple-macosx10.4.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 16 | // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1040' | count 1 |
Rafael Espindola | be8a91b | 2013-07-04 15:22:16 +0000 | [diff] [blame] | 17 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
Tim Northover | 67465f8 | 2015-10-30 16:30:30 +0000 | [diff] [blame] | 18 | // RUN: not grep '__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__' %t |
| 19 | // RUN: not grep '__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__' %t |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 20 | // RUN: %clang_cc1 -triple i386-apple-macosx10.4.10 -dM -E -o %t %s |
| 21 | // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1049' | count 1 |
| 22 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
| 23 | // RUN: %clang_cc1 -triple i386-apple-macosx10.5.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 24 | // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1050' | count 1 |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 25 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
| 26 | // RUN: %clang_cc1 -triple i386-apple-macosx10.6.0 -dM -E -o %t %s |
Daniel Dunbar | 8b57697 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 27 | // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1060' | count 1 |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 28 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
| 29 | // RUN: %clang_cc1 -triple x86_64-apple-macosx10.10.0 -dM -E -o %t %s |
Bob Wilson | 2a3710e | 2014-08-08 21:45:53 +0000 | [diff] [blame] | 30 | // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '101000' | count 1 |
Steven Wu | a74bbaf | 2015-02-04 18:10:38 +0000 | [diff] [blame] | 31 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
Tim Northover | 67465f8 | 2015-10-30 16:30:30 +0000 | [diff] [blame] | 32 | |
| 33 | // RUN: %clang_cc1 -triple arm64-apple-tvos8.3 -dM -E -o %t %s |
| 34 | // RUN: grep '__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__' %t | grep '80300' | count 1 |
| 35 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
| 36 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
Bob Wilson | 4cf27c4 | 2016-07-18 20:29:14 +0000 | [diff] [blame] | 37 | // RUN: %clang_cc1 -triple arm64-apple-tvos10.2.3 -dM -E -o %t %s |
| 38 | // RUN: grep '__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__' %t | grep '100203' | count 1 |
Tim Northover | 67465f8 | 2015-10-30 16:30:30 +0000 | [diff] [blame] | 39 | |
| 40 | // RUN: %clang_cc1 -triple x86_64-apple-tvos8.3 -dM -E -o %t %s |
| 41 | // RUN: grep '__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__' %t | grep '80300' | count 1 |
| 42 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
| 43 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
| 44 | |
| 45 | // RUN: %clang_cc1 -triple armv7k-apple-watchos2.1 -dM -E -o %t %s |
| 46 | // RUN: grep '__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__' %t | grep '20100' | count 1 |
| 47 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
| 48 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |
| 49 | |
| 50 | // RUN: %clang_cc1 -triple i386-apple-watchos2.1 -dM -E -o %t %s |
| 51 | // RUN: grep '__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__' %t | grep '20100' | count 1 |
| 52 | // RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t |
| 53 | // RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t |