summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@gnu.org>2020-09-28 19:05:52 +0200
committerDaiki Ueno <ueno@gnu.org>2020-10-03 16:46:39 +0200
commit5eff2002b0f7ac54b14326f207b5a9e509269555 (patch)
treecc4406507a56f2ab290d67d30a64f3b4b687dbf2
parent9f9fb0c9ff11f3dc8a6846e647fe831ec91e6254 (diff)
downloadgnutls-5eff2002b0f7ac54b14326f207b5a9e509269555.tar.gz
tests: remove unused lock facility using lockfile-create
Signed-off-by: Daiki Ueno <ueno@gnu.org>
-rw-r--r--tests/scripts/common.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/scripts/common.sh b/tests/scripts/common.sh
index 396df0bfd1..61b2cfa9d8 100644
--- a/tests/scripts/common.sh
+++ b/tests/scripts/common.sh
@@ -208,14 +208,6 @@ wait_udp_server() {
sleep 4
}
-if test -x /usr/bin/lockfile-create;then
-LOCKFILE="lockfile-create global"
-UNLOCKFILE="lockfile-remove global"
-else
-LOCKFILE="lockfile global.lock"
-UNLOCKFILE="rm -f global.lock"
-fi
-
create_testdir() {
local PREFIX=$1
d=`mktemp -d -t ${PREFIX}.XXXXXX`