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

Mark Johnston markj at FreeBSD.org
Tue Jul 14 14:11:55 UTC 2020


Author: markj
Date: Tue Jul 14 14:11:54 2020
New Revision: 363181
URL: https://svnweb.freebsd.org/changeset/base/363181

Log:
  Add safexcel(4) to cryptotest.
  
  MFC after:	1 week
  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	Tue Jul 14 14:09:29 2020	(r363180)
+++ head/tests/sys/opencrypto/cryptotest.py	Tue Jul 14 14:11:54 2020	(r363181)
@@ -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' ]
-shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0' ]
+aesmodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0' ]
+shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0' ]
 
 def GenTestCase(cname):
     try:
@@ -456,6 +456,7 @@ aesni = GenTestCase('aesni0')
 armv8crypto = GenTestCase('armv8crypto0')
 ccr = GenTestCase('ccr0')
 ccp = GenTestCase('ccp0')
+safexcel = GenTestCase('safexcel0')
 
 if __name__ == '__main__':
     unittest.main()


More information about the svn-src-all mailing list