summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-05-12 12:33:06 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-05-12 12:33:06 +0000
commitedc613c626ac4ae3e2539b5da8d2fece6fbd6653 (patch)
treecb2a9fe2ebdf272c8fff6c0d614b1c0fe256ee51 /src
parente127e9d00f6313b36132405c4cf75e1a18056139 (diff)
- fix
Diffstat (limited to 'src')
-rw-r--r--src/integration-tests/gnunet_testing.py.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/integration-tests/gnunet_testing.py.in b/src/integration-tests/gnunet_testing.py.in
index 7f8c97637..41e709f8c 100644
--- a/src/integration-tests/gnunet_testing.py.in
+++ b/src/integration-tests/gnunet_testing.py.in
@@ -51,7 +51,10 @@ class Check:
time.sleep(1)
execs += 1
if ((False == res) and (execs >= timeout)):
- print ('Check had timeout after ' +str(timeout)+ 'seconds')
+ print ('Check had timeout after ' +str(timeout)+ ' seconds')
+ neg_cont (self)
+ elif ((False == res) and (execs >= timeout)):
+ neg_cont (self)
else:
pos_cont (self)
return res