summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-03-10 15:40:18 -0400
committerJeffrey Walton <noloader@gmail.com>2020-03-10 15:40:18 -0400
commit25bd9d5e72d0e8a54003dffe49a23e520ce1744b (patch)
tree22d7e6b983ee8b619038d653b2e9d77ca74eb1b7
parent09d374f6397740fae7cb2c161c62c7f759ed70cf (diff)
downloadcryptopp-git-25bd9d5e72d0e8a54003dffe49a23e520ce1744b.tar.gz
Add additional platforms to cryptest-ios.sh
-rwxr-xr-xTestScripts/cryptest-ios.sh2
-rwxr-xr-xTestScripts/setenv-ios.sh6
2 files changed, 5 insertions, 3 deletions
diff --git a/TestScripts/cryptest-ios.sh b/TestScripts/cryptest-ios.sh
index 96a9e82f..5689475a 100755
--- a/TestScripts/cryptest-ios.sh
+++ b/TestScripts/cryptest-ios.sh
@@ -27,11 +27,13 @@ rm -rf "$TMPDIR/build.log" 2>/dev/null
PLATFORMS=()
PLATFORMS+=("iPhoneOS:armv7")
PLATFORMS+=("iPhoneOS:arm64")
+PLATFORMS+=("AppleTVOS:armv7")
PLATFORMS+=("AppleTVOS:arm64")
PLATFORMS+=("WatchOS:armv7")
PLATFORMS+=("WatchOS:arm64")
PLATFORMS+=("iPhoneSimulator:i386")
PLATFORMS+=("iPhoneSimulator:x86_64")
+PLATFORMS+=("AppleTVSimulator:i386")
PLATFORMS+=("AppleTVSimulator:x86_64")
PLATFORMS+=("WatchSimulator:i386")
PLATFORMS+=("WatchSimulator:x86_64")
diff --git a/TestScripts/setenv-ios.sh b/TestScripts/setenv-ios.sh
index 128d8173..31a6bc14 100755
--- a/TestScripts/setenv-ios.sh
+++ b/TestScripts/setenv-ios.sh
@@ -13,9 +13,9 @@
##### Some validation #####
#########################################
-# In the past we could infer arch or cpu from the SDK (and mostly
-# vice-versa). Nowadays we need it set for us because Apple platforms
-# can be either 32-bit or 64-bit.
+# In the past we could mostly infer arch or cpu from the SDK (and mostly
+# vice-versa). Nowadays we need the user to set it for us because Apple
+# platforms have both 32-bit or 64-bit variations.
if [ -z "$IOS_SDK" ]; then
echo "IOS_SDK is not set. Please set it"