aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/gnunet_testing.py.in
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/integration-tests/gnunet_testing.py.in
parente127e9d00f6313b36132405c4cf75e1a18056139 (diff)
downloadgnunet-edc613c626ac4ae3e2539b5da8d2fece6fbd6653.tar.gz
gnunet-edc613c626ac4ae3e2539b5da8d2fece6fbd6653.zip
- fix
Diffstat (limited to 'src/integration-tests/gnunet_testing.py.in')
-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:
51 time.sleep(1) 51 time.sleep(1)
52 execs += 1 52 execs += 1
53 if ((False == res) and (execs >= timeout)): 53 if ((False == res) and (execs >= timeout)):
54 print ('Check had timeout after ' +str(timeout)+ 'seconds') 54 print ('Check had timeout after ' +str(timeout)+ ' seconds')
55 neg_cont (self)
56 elif ((False == res) and (execs >= timeout)):
57 neg_cont (self)
55 else: 58 else:
56 pos_cont (self) 59 pos_cont (self)
57 return res 60 return res