From 9a1184de2aea3cf880cad54c128c7176285eb491 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 14 Jul 2020 14:11:54 +0000 Subject: Add safexcel(4) to cryptotest. MFC after: 1 week Sponsored by: Rubicon Communications, LLC (Netgate) --- tests/sys/opencrypto/cryptotest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/sys/opencrypto') 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() -- cgit v1.2.3