aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-05-11 11:26:41 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-05-11 11:26:41 +0000
commit1e2a026494463d543d61da2880f3e52a5afa4192 (patch)
treec0454caf43c192ceea47f7bf5f80027a7129aeb9
parentb1bf8f35ca652ab6371760d7e38d62a1e1bdee9b (diff)
downloadgnunet-1e2a026494463d543d61da2880f3e52a5afa4192.tar.gz
gnunet-1e2a026494463d543d61da2880f3e52a5afa4192.zip
- msg
-rw-r--r--src/integration-tests/gnunet_testing.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/integration-tests/gnunet_testing.py.in b/src/integration-tests/gnunet_testing.py.in
index d935bc419..7f8c97637 100644
--- a/src/integration-tests/gnunet_testing.py.in
+++ b/src/integration-tests/gnunet_testing.py.in
@@ -50,8 +50,8 @@ class Check:
50 res = self.run() 50 res = self.run()
51 time.sleep(1) 51 time.sleep(1)
52 execs += 1 52 execs += 1
53 if (res == False): 53 if ((False == res) and (execs >= timeout)):
54 neg_cont (self) 54 print ('Check had timeout after ' +str(timeout)+ 'seconds')
55 else: 55 else:
56 pos_cont (self) 56 pos_cont (self)
57 return res 57 return res