summaryrefslogtreecommitdiff
path: root/src/integration-tests/gnunet_testing.py.in
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-02-16 16:37:02 +0100
committerChristian Grothoff <christian@grothoff.org>2019-02-16 16:37:02 +0100
commit743ea291bd4cf84ee78adfc1fe0e35cedcff41a9 (patch)
treecca53ced51e516824ef62891c5b38c2d53816963 /src/integration-tests/gnunet_testing.py.in
parentd51448ba0891681e0f09954379e31d1c21dde893 (diff)
add debug output to py.in
Diffstat (limited to 'src/integration-tests/gnunet_testing.py.in')
-rw-r--r--src/integration-tests/gnunet_testing.py.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/integration-tests/gnunet_testing.py.in b/src/integration-tests/gnunet_testing.py.in
index 76ab3b0a0..1470c3d38 100644
--- a/src/integration-tests/gnunet_testing.py.in
+++ b/src/integration-tests/gnunet_testing.py.in
@@ -357,7 +357,9 @@ class Peer(object):
if os.name == 'nt' and tests[1] == b'\n' and tests[0][-1] == b'\r':
tests = (tests[0][:-1], tests[1], tests[2])
tests = tests[0]
+ print("running gnunet-statistics " + self.cfg + " for " + name + "/" + subsystem + " yields " + tests.decode("utf-8"))
if (tests.isdigit() == True):
return tests
else:
+ print("Invalid statistics value: " + str(tests) + " is not a number!")
return -1