aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2020-10-30 19:53:16 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2020-10-30 19:53:16 +0000
commitac619349428e4802913be02f3457b4e6f3f776f6 (patch)
treef6b2d377b67180d6607674d494e858af6061fec6 /tests
parent77b793c46547ad68ec0c2b92e7ff10d0b7d2fb2d (diff)
downloadsrc-ac619349428e4802913be02f3457b4e6f3f776f6.tar.gz
src-ac619349428e4802913be02f3457b4e6f3f776f6.zip
Add ossl(4) to cryptotest.
Notes
Notes: svn path=/head/; revision=367185
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/opencrypto/cryptotest.py3
-rw-r--r--tests/sys/opencrypto/runtests.sh2
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/sys/opencrypto/cryptotest.py b/tests/sys/opencrypto/cryptotest.py
index 8868149bdb6f..7de4015e2919 100644
--- a/tests/sys/opencrypto/cryptotest.py
+++ b/tests/sys/opencrypto/cryptotest.py
@@ -51,7 +51,7 @@ def katg(base, glob):
return iglob(os.path.join(katdir, base, glob))
aesmodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0' ]
-shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'safexcel0' ]
+shamodules = [ 'cryptosoft0', 'aesni0', 'armv8crypto0', 'ccr0', 'ccp0', 'ossl0', 'safexcel0' ]
def GenTestCase(cname):
try:
@@ -456,6 +456,7 @@ aesni = GenTestCase('aesni0')
armv8crypto = GenTestCase('armv8crypto0')
ccr = GenTestCase('ccr0')
ccp = GenTestCase('ccp0')
+ossl = GenTestCase('ossl0')
safexcel = GenTestCase('safexcel0')
if __name__ == '__main__':
diff --git a/tests/sys/opencrypto/runtests.sh b/tests/sys/opencrypto/runtests.sh
index 1bf6149f2857..0bd3e6011755 100644
--- a/tests/sys/opencrypto/runtests.sh
+++ b/tests/sys/opencrypto/runtests.sh
@@ -68,7 +68,7 @@ aarch64)
cpu_module=nexus/armv8crypto
;;
amd64|i386)
- cpu_module=nexus/aesni
+ cpu_module="nexus/aesni nexus/ossl"
;;
esac