From 5e5808ad1e437ea999351681caab66214484c904 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 4 Mar 2022 22:13:30 -0500 Subject: Update cryptest.sh for ARM NEON --- TestScripts/cryptest.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'TestScripts') 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" -- cgit v1.2.1