summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuba Mracek <mracek@apple.com>2018-06-21 15:21:24 +0000
committerKuba Mracek <mracek@apple.com>2018-06-21 15:21:24 +0000
commitbb9dedfa8a5205d512e71ae462e77ba4e482e8d4 (patch)
tree8b94ce0d30af8324f603f1fc279c820fa88d83e4
parent470b286ee5669019a83b2e2ffae845ee44369fbf (diff)
downloadbcm5719-llvm-bb9dedfa8a5205d512e71ae462e77ba4e482e8d4.tar.gz
bcm5719-llvm-bb9dedfa8a5205d512e71ae462e77ba4e482e8d4.zip
[sanitizer] Stop running tests against 32-bit iOS simulator
llvm-svn: 335245
-rw-r--r--compiler-rt/test/lit.common.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/test/lit.common.cfg b/compiler-rt/test/lit.common.cfg
index e34e52583b9..79229e3008d 100644
--- a/compiler-rt/test/lit.common.cfg
+++ b/compiler-rt/test/lit.common.cfg
@@ -240,6 +240,11 @@ if config.host_os == 'Darwin':
# rdar://problem/22207160
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support",
"-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:
config.substitutions.append( ("%macos_min_target_10_11", "") )
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support", "") )
OpenPOWER on IntegriCloud