aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-10 12:03:13 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-10 12:03:13 +0200
commit4c8b719d9fcb5c67b4f461961d436532cbd4c8c1 (patch)
tree4b7b1bcd11df7ea1b327bf1032f7d928ab55ff93 /src/statistics
parentd3245124b4b2918c6dbd64aa237e96d96279e48b (diff)
downloadgnunet-4c8b719d9fcb5c67b4f461961d436532cbd4c8c1.tar.gz
gnunet-4c8b719d9fcb5c67b4f461961d436532cbd4c8c1.zip
fix test check for TMPDIR: do not throw exception if variable does not exist
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/test_gnunet_statistics.py.in6
-rw-r--r--src/statistics/test_statistics_api_data.conf2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/statistics/test_gnunet_statistics.py.in b/src/statistics/test_gnunet_statistics.py.in
index 8f6966b6f..96714cf9a 100644
--- a/src/statistics/test_gnunet_statistics.py.in
+++ b/src/statistics/test_gnunet_statistics.py.in
@@ -8,10 +8,10 @@ import subprocess
8import time 8import time
9 9
10if os.name == "nt": 10if os.name == "nt":
11 tmp = os.getenv ("TEMP") 11 tmp = os.getenv ("TEMP")
12elif os.environ["TMPDIR"]: 12elif None != os.environ.get("TMPDIR"):
13 tmp = os.getenv("TMPDIR") 13 tmp = os.getenv("TMPDIR")
14elif os.environ["TMP"]: 14elif None != os.environ.get("TMP"):
15 tmp = os.getenv("TMP") 15 tmp = os.getenv("TMP")
16else: 16else:
17 tmp = "/tmp" 17 tmp = "/tmp"
diff --git a/src/statistics/test_statistics_api_data.conf b/src/statistics/test_statistics_api_data.conf
index 66555291c..9ef8d0673 100644
--- a/src/statistics/test_statistics_api_data.conf
+++ b/src/statistics/test_statistics_api_data.conf
@@ -1,5 +1,5 @@
1@INLINE@ ../../contrib/no_forcestart.conf 1@INLINE@ ../../contrib/no_forcestart.conf
2@INLINE@ ../../contrib/no_autostart_above_core.conf
2 3
3[PATHS] 4[PATHS]
4GNUNET_TEST_HOME = $GNUNET_TMP/test-gnunet-statistics/ 5GNUNET_TEST_HOME = $GNUNET_TMP/test-gnunet-statistics/
5