blob: 2da0c4c7a574d0dc065507b272c7ce71fb421f18 [file] [log] [blame]
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001// RUN: %clang_cc1 -triple armv6-apple-ios3.0.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '30000' | count 1
Rafael Espindolad029cbb2013-07-04 15:22:16 +00003// RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004// RUN: %clang_cc1 -triple armv6-apple-ios2.0.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '20000' | count 1
Rafael Espindolad029cbb2013-07-04 15:22:16 +00006// RUN: not grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t
Stephen Hines0e2c34f2015-03-23 12:09:02 -07007// RUN: %clang_cc1 -triple armv6-apple-ios2.2.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00008// RUN: grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t | grep '20200' | count 1
Stephen Hines0e2c34f2015-03-23 12:09:02 -07009// 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
13// RUN: %clang_cc1 -triple i386-apple-macosx10.4.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +000014// RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1040' | count 1
Rafael Espindolad029cbb2013-07-04 15:22:16 +000015// RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t
Stephen Hines0e2c34f2015-03-23 12:09:02 -070016// RUN: %clang_cc1 -triple i386-apple-macosx10.4.10 -dM -E -o %t %s
17// RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1049' | count 1
18// RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t
19// RUN: %clang_cc1 -triple i386-apple-macosx10.5.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +000020// RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1050' | count 1
Stephen Hines0e2c34f2015-03-23 12:09:02 -070021// RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t
22// RUN: %clang_cc1 -triple i386-apple-macosx10.6.0 -dM -E -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +000023// RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1060' | count 1
Stephen Hines0e2c34f2015-03-23 12:09:02 -070024// RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t
25// RUN: %clang_cc1 -triple x86_64-apple-macosx10.10.0 -dM -E -o %t %s
Stephen Hines176edba2014-12-01 14:53:08 -080026// RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '101000' | count 1
Stephen Hines0e2c34f2015-03-23 12:09:02 -070027// RUN: not grep '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' %t