Author: jkim Date: Fri Oct 30 19:53:16 2020 New Revision: 367185 URL: https://svnweb.freebsd.org/changeset/base/367185
Log: Add ossl(4) to cryptotest. Modified: head/tests/sys/opencrypto/cryptotest.py head/tests/sys/opencrypto/runtests.sh Modified: head/tests/sys/opencrypto/cryptotest.py ============================================================================== --- head/tests/sys/opencrypto/cryptotest.py Fri Oct 30 19:37:53 2020 (r367184) +++ head/tests/sys/opencrypto/cryptotest.py Fri Oct 30 19:53:16 2020 (r367185) @@ -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__': Modified: head/tests/sys/opencrypto/runtests.sh ============================================================================== --- head/tests/sys/opencrypto/runtests.sh Fri Oct 30 19:37:53 2020 (r367184) +++ head/tests/sys/opencrypto/runtests.sh Fri Oct 30 19:53:16 2020 (r367185) @@ -68,7 +68,7 @@ aarch64) cpu_module=nexus/armv8crypto ;; amd64|i386) - cpu_module=nexus/aesni + cpu_module="nexus/aesni nexus/ossl" ;; esac _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"