summaryrefslogtreecommitdiff
path: root/TestScripts/cryptest-ios.sh
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-11 18:37:39 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-11 18:37:39 -0500
commita157402f19bbee5068b0193255e474cd1978aa09 (patch)
tree2f29c0ef26b9d9b69e53e56b68cd695d93eb4ab9 /TestScripts/cryptest-ios.sh
parent8f330750351134824710fe8381a62955bede78ef (diff)
downloadcryptopp-git-a157402f19bbee5068b0193255e474cd1978aa09.tar.gz
Fix grep expression in cryptest-ios.sh
Diffstat (limited to 'TestScripts/cryptest-ios.sh')
-rwxr-xr-xTestScripts/cryptest-ios.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/TestScripts/cryptest-ios.sh b/TestScripts/cryptest-ios.sh
index 6bf21823..3076111d 100755
--- a/TestScripts/cryptest-ios.sh
+++ b/TestScripts/cryptest-ios.sh
@@ -122,7 +122,7 @@ do
then
# Test ASIMD code generation
- count=$(otool -tV aria_simd.o 2>&1 | grep -c -E 'vld|vst|vshl|vshr|veor')
+ count=$(otool -tV aria_simd.o 2>&1 | grep -c -E 'ldr[[:space:]]*q|str[[:space:]]*q|shl.4|shr.4|eor.16')
if [[ "${count}" -gt 64 ]]
then
echo "${platform} : ASIMD ==> SUCCESS" >> "${TMPDIR}/build.log"