summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkim <jkim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-10-30 19:53:16 +0000
committerjkim <jkim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-10-30 19:53:16 +0000
commit51459e9b971aa0a1f323c755133cc996ea3a31bc (patch)
treef6b2d377b67180d6607674d494e858af6061fec6
parentfec3a971ea8686bc268d640568df8a0fc57362b8 (diff)
downloadfreebsd-51459e9b971aa0a1f323c755133cc996ea3a31bc.tar.gz
freebsd-51459e9b971aa0a1f323c755133cc996ea3a31bc.tar.bz2
Add ossl(4) to cryptotest.
git-svn-id: http://svn.freebsd.org/base/head@367185 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
-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 8868149bdb6..7de4015e291 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 1bf6149f285..0bd3e601175 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