summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-08 03:37:45 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-08 03:37:45 -0500
commitca302f306067301e9236b95375c1b3e5e2a9c86e (patch)
tree11660677a2516171c6922744d16d2fd8509f7837
parent7890fe62fae944b8cd1cc0bdd7808b43cb388a98 (diff)
downloadcryptopp-git-ca302f306067301e9236b95375c1b3e5e2a9c86e.tar.gz
Update code generation tests in cryptest-ios.sh
-rwxr-xr-xTestScripts/cryptest-ios.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/TestScripts/cryptest-ios.sh b/TestScripts/cryptest-ios.sh
index 8265a770..10278ee9 100755
--- a/TestScripts/cryptest-ios.sh
+++ b/TestScripts/cryptest-ios.sh
@@ -97,7 +97,7 @@ do
then
# Test AES code generation
- count=$(otool -tV rijndael_simd.o 2>&1 | grep -i -c -E 'aese|aesd|aesmc|aesimc')
+ count=$(otool -tV rijndael_simd.o 2>&1 | grep -c -E 'aese|aesd|aesmc|aesimc')
if [[ "${count}" -gt 0 ]]
then
echo "${platform} : AES ==> SUCCESS" >> "${TMPDIR}/build.log"
@@ -107,7 +107,7 @@ do
fi
# Test PMULL code generation
- count=$(otool -tV gcm_simd.o 2>&1 | grep -i -c -E 'pmull|pmull2')
+ count=$(otool -tV gcm_simd.o 2>&1 | grep -c -E 'pmull|pmull2')
if [[ "${count}" -gt 0 ]]
then
echo "${platform} : PMULL ==> SUCCESS" >> "${TMPDIR}/build.log"
@@ -117,7 +117,7 @@ do
fi
# Test SHA1 code generation
- count=$(otool -tV sha_simd.o 2>&1 | grep -i -c -E 'sha1c|sha1m|sha1p|sha1h|sha1su0|sha1su1')
+ count=$(otool -tV sha_simd.o 2>&1 | grep -c -E 'sha1c|sha1m|sha1p|sha1h|sha1su0|sha1su1')
if [[ "${count}" -gt 0 ]]
then
echo "${platform} : SHA1 ==> SUCCESS" >> "${TMPDIR}/build.log"
@@ -127,7 +127,7 @@ do
fi
# Test SHA2 code generation
- count=$(otool -tV sha_simd.o | grep -i -c -E 'sha256h|sha256su0|sha256su1')
+ count=$(otool -tV sha_simd.o | grep -c -E 'sha256h|sha256su0|sha256su1')
if [[ "${count}" -gt 0 ]]
then
echo "${platform} : SHA2 ==> SUCCESS" >> "${TMPDIR}/build.log"