summaryrefslogtreecommitdiff
path: root/TestScripts
diff options
context:
space:
mode:
Diffstat (limited to 'TestScripts')
-rwxr-xr-xTestScripts/cryptest.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/TestScripts/cryptest.sh b/TestScripts/cryptest.sh
index fc6d119a..672bb76d 100755
--- a/TestScripts/cryptest.sh
+++ b/TestScripts/cryptest.sh
@@ -6370,9 +6370,10 @@ COUNT="${#TEST_LIST[@]}"
if (( "$COUNT" == "0" )); then
echo "No configurations tested" | tee -a "$TEST_RESULTS"
else
+ echo "$COUNT configurations tested" | tee -a "$TEST_RESULTS"
for TEST in "${TEST_LIST[@]}"
do
- echo " - $TEST"
+ echo " - $TEST" | tee -a "$TEST_RESULTS"
done
fi
echo | tee -a "$TEST_RESULTS"