summaryrefslogtreecommitdiff
path: root/TestScripts
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-03-04 22:13:30 -0500
committerJeffrey Walton <noloader@gmail.com>2022-03-04 22:13:30 -0500
commit5e5808ad1e437ea999351681caab66214484c904 (patch)
tree8e731d5d493f2ea40e0f2d565d45d65135e7a86c /TestScripts
parent458a69fdbca9c9427f1e9398b56c2de55157be4f (diff)
downloadcryptopp-git-5e5808ad1e437ea999351681caab66214484c904.tar.gz
Update cryptest.sh for ARM NEON
Diffstat (limited to 'TestScripts')
-rwxr-xr-xTestScripts/cryptest.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/TestScripts/cryptest.sh b/TestScripts/cryptest.sh
index f6d82b8d..35a0a110 100755
--- a/TestScripts/cryptest.sh
+++ b/TestScripts/cryptest.sh
@@ -1614,8 +1614,8 @@ if [[ ("$HAVE_DISASS" -ne 0 && ("$IS_ARM32" -ne 0 || "$IS_ARM64" -ne 0)) ]]; the
echo "ERROR: failed to generate NEON load instructions" | tee -a "$TEST_RESULTS"
fi
else # ARMv7
- # ARIA::UncheckedKeySet: 4 vld1.32 {d1,d2}
- COUNT=$(echo -n "$DISASS_TEXT" | "$GREP" -i -c -E 'vld1.32[[:space:]]*')
+ # ARIA::UncheckedKeySet: 4 vld {d1,d2}
+ COUNT=$(echo -n "$DISASS_TEXT" | "$GREP" -i -c -E 'vld[[:space:]]*')
if [[ ("$COUNT" -lt 4) ]]; then
FAILED=1
echo "ERROR: failed to generate NEON load instructions" | tee -a "$TEST_RESULTS"
@@ -1630,8 +1630,8 @@ if [[ ("$HAVE_DISASS" -ne 0 && ("$IS_ARM32" -ne 0 || "$IS_ARM64" -ne 0)) ]]; the
echo "ERROR: failed to generate NEON store instructions" | tee -a "$TEST_RESULTS"
fi
else
- # ARIA::UncheckedKeySet: 17 vstr1.32 {d1,d2}
- COUNT=$(echo -n "$DISASS_TEXT" | "$GREP" -i -c -E 'vst1.32[[:space:]]*')
+ # ARIA::UncheckedKeySet: 17 vstr {d1,d2}
+ COUNT=$(echo -n "$DISASS_TEXT" | "$GREP" -i -c -E 'vst[[:space:]]*')
if [[ ("$COUNT" -lt 16) ]]; then
FAILED=1
echo "ERROR: failed to generate NEON store instructions" | tee -a "$TEST_RESULTS"