summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2019-04-11 14:35:32 +0200
committerDaiki Ueno <dueno@redhat.com>2019-04-19 08:56:54 +0200
commit96a5dd4fa8e9c7b1d45fe934ec7829d494dbd372 (patch)
tree7538ef2dfeebced514c85893a5339a27265b13d6 /tests/scripts
parent89c975cc25d4e7c5040a3f657b732dd1704bfb2b (diff)
downloadgnutls-96a5dd4fa8e9c7b1d45fe934ec7829d494dbd372.tar.gz
serv, cli: add --keymatexport option
This adds --keymatexport and --keymatexportsize options to both gnutls-serv and gnutls-cli. Those would be useful for testing interoperability with other implementations. Signed-off-by: Daiki Ueno <dueno@redhat.com>
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/common.sh b/tests/scripts/common.sh
index 1cce09d04e..a714bcd608 100644
--- a/tests/scripts/common.sh
+++ b/tests/scripts/common.sh
@@ -158,7 +158,7 @@ launch_server() {
shift
wait_for_free_port ${PORT}
- ${SERV} ${DEBUG} -p "${PORT}" $* >/dev/null &
+ ${SERV} ${DEBUG} -p "${PORT}" $* >${LOGFILE-/dev/null} &
}
launch_pkcs11_server() {
@@ -177,7 +177,7 @@ launch_bare_server() {
shift
wait_for_free_port ${PORT}
- ${SERV} $* >/dev/null &
+ ${SERV} $* >${LOGFILE-/dev/null} &
}
wait_server() {