Change guard for AES, RDRAND and RDSEED. There's no sense in performing the test if none of the features are available
parent
5c311d7fab
commit
370483c7aa
|
|
@ -1674,7 +1674,7 @@ fi
|
||||||
|
|
||||||
############################################
|
############################################
|
||||||
# Modern compiler and old hardware, like PII, PIII or Core2
|
# Modern compiler and old hardware, like PII, PIII or Core2
|
||||||
if [ "$IS_X86" -ne "0" ] || [ "$IS_X64" -ne "0" ]; then
|
if [ "$HAVE_X86_AES" -ne "0" ] || [ "$HAVE_X86_RDRAND" -ne "0" ] || [ "$HAVE_X86_RDSEED" -ne "0" ]; then
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "************************************" | tee -a "$TEST_RESULTS"
|
echo "************************************" | tee -a "$TEST_RESULTS"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue