svn commit: r367388 - head/tests/sys/opencrypto

Mark Johnston markj at FreeBSD.org
Thu Nov 5 16:00:58 UTC 2020


Author: markj
Date: Thu Nov  5 16:00:57 2020
New Revision: 367388
URL: https://svnweb.freebsd.org/changeset/base/367388

Log:
  cryptotest: Add qat(4) coverage
  
  MFC after:	3 days
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Modified:
  head/tests/sys/opencrypto/cryptotest.py

Modified: head/tests/sys/opencrypto/cryptotest.py
==============================================================================
--- head/tests/sys/opencrypto/cryptotest.py	Thu Nov  5 16:00:30 2020	(r367387)
+++ head/tests/sys/opencrypto/cryptotest.py	Thu Nov  5 16:00:57 2020	(r367388)
@@ -50,8 +50,8 @@ def katg(base, glob):
         raise unittest.SkipTest("Missing %s test vectors" % (base))
     return iglob(os.path.join(katdir, base, glob))
 
-aesmodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0' ]
-shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'ossl0', 'safexcel0' ]
+aesmodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0', 'qat0' ]
+shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'ossl0', 'safexcel0', 'qat0' ]
 
 def GenTestCase(cname):
     try:
@@ -458,6 +458,7 @@ ccr = GenTestCase('ccr0')
 ccp = GenTestCase('ccp0')
 ossl = GenTestCase('ossl0')
 safexcel = GenTestCase('safexcel0')
+qat = GenTestCase('qat0')
 
 if __name__ == '__main__':
     unittest.main()


More information about the svn-src-head mailing list