aboutsummaryrefslogtreecommitdiff
path: root/src/dht/test_dht_tools.sh
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-08-29 22:01:18 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 13:16:29 +0100
commit43b55e25e3824ea3bd9b4e10ee3dd2a5188b7f4c (patch)
tree8357efdb8fc09747562a1ae10d2f8e59f6a79623 /src/dht/test_dht_tools.sh
parent4611664be0ba79ec7029a74cf961f28f2a658241 (diff)
downloadgnunet-43b55e25e3824ea3bd9b4e10ee3dd2a5188b7f4c.tar.gz
gnunet-43b55e25e3824ea3bd9b4e10ee3dd2a5188b7f4c.zip
-Removed references to explicit /tmp in test scripts and configurations in DHT, GNS, STATISTICS, and TRANSPORT subsystems.
Diffstat (limited to 'src/dht/test_dht_tools.sh')
-rwxr-xr-xsrc/dht/test_dht_tools.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dht/test_dht_tools.sh b/src/dht/test_dht_tools.sh
index 56cc99e15..462866f87 100755
--- a/src/dht/test_dht_tools.sh
+++ b/src/dht/test_dht_tools.sh
@@ -1,8 +1,9 @@
1#!/bin/sh 1#!/bin/sh
2# This file is in the public domain. 2# This file is in the public domain.
3 3
4out=`mktemp /tmp/test-gnunet-dht-logXXXXXXXX` 4GNUNET_TMP="$(gnunet-config -f -s PATHS -o GNUNET_TMP)"
5tempcfg=`mktemp /tmp/test-dht-tools.XXXXXXXX` 5out=`mktemp $GNUNET_TMP/test-gnunet-dht-logXXXXXXXX`
6tempcfg=`mktemp $GNUNET_TMP/test-dht-tools.XXXXXXXX`
6checkout="check.out" 7checkout="check.out"
7armexe="gnunet-arm -c $tempcfg " 8armexe="gnunet-arm -c $tempcfg "
8putexe="gnunet-dht-put -c $tempcfg " 9putexe="gnunet-dht-put -c $tempcfg "