svn commit: r348019 - head/tests/sys/opencrypto

Enji Cooper ngie at FreeBSD.org
Mon May 20 22:32:27 UTC 2019


Author: ngie
Date: Mon May 20 22:32:26 2019
New Revision: 348019
URL: https://svnweb.freebsd.org/changeset/base/348019

Log:
  Allow the end-user to pass along arguments to cryptotest.py via `$CRYPTOTEST_ARGS`
  
  This allows someone to use `-v` to dump out standard output.

Modified:
  head/tests/sys/opencrypto/runtests.sh

Modified: head/tests/sys/opencrypto/runtests.sh
==============================================================================
--- head/tests/sys/opencrypto/runtests.sh	Mon May 20 22:21:47 2019	(r348018)
+++ head/tests/sys/opencrypto/runtests.sh	Mon May 20 22:32:26 2019	(r348019)
@@ -81,7 +81,7 @@ if ! sysctl $cdas_sysctl=1; then
 fi
 
 echo "1..1"
-if "$PYTHON" $(dirname $0)/cryptotest.py; then
+if "$PYTHON" $(dirname $0)/cryptotest.py $CRYPTOTEST_ARGS; then
 	echo "ok 1"
 else
 	echo "not ok 1"


More information about the svn-src-all mailing list