summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2017-06-08 21:34:54 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2017-06-08 21:34:54 +0000
commit6720b890459dccaf6da00d7a30fe63d01b0eac7b (patch)
treeb19df3563ed14c982ec4e3edbd88f19832e6256b /tests
parent77e19437850e8f57150785a725e358144294214e (diff)
downloadsrc-test2-6720b890459dccaf6da00d7a30fe63d01b0eac7b.tar.gz
src-test2-6720b890459dccaf6da00d7a30fe63d01b0eac7b.zip
Notes
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/opencrypto/cryptotest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/sys/opencrypto/cryptotest.py b/tests/sys/opencrypto/cryptotest.py
index e616bafa055d..46d9261f2a78 100644
--- a/tests/sys/opencrypto/cryptotest.py
+++ b/tests/sys/opencrypto/cryptotest.py
@@ -42,9 +42,9 @@ katdir = '/usr/local/share/nist-kat'
def katg(base, glob):
return iglob(os.path.join(katdir, base, glob))
-aesmodules = [ 'cryptosoft0', 'aesni0', ]
+aesmodules = [ 'cryptosoft0', 'aesni0', 'ccr0' ]
desmodules = [ 'cryptosoft0', ]
-shamodules = [ 'cryptosoft0', ]
+shamodules = [ 'cryptosoft0', 'ccr0' ]
def GenTestCase(cname):
try:
@@ -260,6 +260,7 @@ def GenTestCase(cname):
cryptosoft = GenTestCase('cryptosoft0')
aesni = GenTestCase('aesni0')
+ccr = GenTestCase('ccr0')
if __name__ == '__main__':
unittest.main()