summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2020-11-05 16:00:57 +0000
committerMark Johnston <markj@FreeBSD.org>2020-11-05 16:00:57 +0000
commit870d4ba3ff3b8026d20cf456f05f16ecf1dbc3ce (patch)
tree091449ed810bd09f78cc89bb0fc38693eb37c9c6 /tests
parentf078c492a9b57877c723586db26d789cda1b98ea (diff)
downloadsrc-test2-870d4ba3ff3b8026d20cf456f05f16ecf1dbc3ce.tar.gz
src-test2-870d4ba3ff3b8026d20cf456f05f16ecf1dbc3ce.zip
cryptotest: Add qat(4) coverage
MFC after: 3 days Sponsored by: Rubicon Communications, LLC (Netgate)
Notes
Notes: svn path=/head/; revision=367388
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 7de4015e2919..2ef423ac1505 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', '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()