[sanitizer] Stop running tests against 32-bit iOS simulator

llvm-svn: 335245
This commit is contained in:
Kuba Mracek 2018-06-21 15:21:24 +00:00
parent 470b286ee5
commit bb9dedfa8a
1 changed files with 5 additions and 0 deletions

View File

@ -240,6 +240,11 @@ if config.host_os == 'Darwin':
# rdar://problem/22207160 # rdar://problem/22207160
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support", config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support",
"-miphoneos-version-min=9.0" if isIOS else "-mmacosx-version-min=10.11") ) "-miphoneos-version-min=9.0" if isIOS else "-mmacosx-version-min=10.11") )
# 32-bit iOS simulator is deprecated and removed in latest Xcode.
if config.apple_platform == "iossim":
if config.target_arch == "i386":
config.unsupported = True
else: else:
config.substitutions.append( ("%macos_min_target_10_11", "") ) config.substitutions.append( ("%macos_min_target_10_11", "") )
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support", "") ) config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support", "") )