aboutsummaryrefslogtreecommitdiff
path: root/tests/sys/opencrypto/cryptotest.py
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2020-07-14 14:11:54 +0000
committerMark Johnston <markj@FreeBSD.org>2020-07-14 14:11:54 +0000
commit9a1184de2aea3cf880cad54c128c7176285eb491 (patch)
tree5050160c605ea0a2c76832e6226b06713ca4b094 /tests/sys/opencrypto/cryptotest.py
parentb356ddf07671c7e0c960231344da7bddf5df42c4 (diff)
downloadsrc-9a1184de2aea3cf880cad54c128c7176285eb491.tar.gz
src-9a1184de2aea3cf880cad54c128c7176285eb491.zip
Add safexcel(4) to cryptotest.
MFC after: 1 week Sponsored by: Rubicon Communications, LLC (Netgate)
Notes
Notes: svn path=/head/; revision=363181
Diffstat (limited to 'tests/sys/opencrypto/cryptotest.py')
-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 211c5cff7907..72543683241b 100644
--- a/tests/sys/opencrypto/cryptotest.py
+++ b/tests/sys/opencrypto/cryptotest.py
@@ -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()