Add ARM Crypto reporting to validation suite

pull/174/head
Jeffrey Walton 2016-05-15 08:31:16 -04:00
parent a31b18ff48
commit c7a9d0d696
1 changed files with 2 additions and 1 deletions

View File

@ -315,9 +315,10 @@ bool TestSettings()
#elif (CRYPTOPP_BOOL_ARM32 || CRYPTOPP_BOOL_ARM64)
bool hasNEON = HasNEON();
bool hasCRC32 = HasCRC32();
bool hasCrypto = HasCrypto();
cout << "passed: ";
cout << "hasNEON == " << hasNEON << ", hasCRC32 == " << hasCRC32 << endl;
cout << "hasNEON == " << hasNEON << ", hasCRC32 == " << hasCRC32 << ", hasCrypto == " << hasCrypto << endl;
#endif
if (!pass)