svn commit: r363419 - stable/12/tests/sys/opencrypto
Mark Johnston
markj at FreeBSD.org
Wed Jul 22 14:24:42 UTC 2020
Author: markj
Date: Wed Jul 22 14:24:41 2020
New Revision: 363419
URL: https://svnweb.freebsd.org/changeset/base/363419
Log:
MFC r363181:
Add safexcel(4) to cryptotest.
Modified:
stable/12/tests/sys/opencrypto/cryptotest.py
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/tests/sys/opencrypto/cryptotest.py
==============================================================================
--- stable/12/tests/sys/opencrypto/cryptotest.py Wed Jul 22 14:22:35 2020 (r363418)
+++ stable/12/tests/sys/opencrypto/cryptotest.py Wed Jul 22 14:24:41 2020 (r363419)
@@ -47,9 +47,9 @@ def katg(base, glob):
raise unittest.SkipTest("Missing %s test vectors" % (base))
return iglob(os.path.join(katdir, base, glob))
-aesmodules = [ 'cryptosoft0', 'aesni0', 'ccr0', 'ccp0' ]
+aesmodules = [ 'cryptosoft0', 'aesni0', 'ccr0', 'ccp0', 'safexcel0' ]
desmodules = [ 'cryptosoft0', ]
-shamodules = [ 'cryptosoft0', 'aesni0', 'ccr0', 'ccp0' ]
+shamodules = [ 'cryptosoft0', 'aesni0', 'ccr0', 'ccp0', 'safexcel0' ]
def GenTestCase(cname):
try:
@@ -468,6 +468,7 @@ cryptosoft = GenTestCase('cryptosoft0')
aesni = GenTestCase('aesni0')
ccr = GenTestCase('ccr0')
ccp = GenTestCase('ccp0')
+safexcel = GenTestCase('safexcel0')
if __name__ == '__main__':
unittest.main()
More information about the svn-src-all
mailing list