diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2012-05-11 11:26:41 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2012-05-11 11:26:41 +0000 |
commit | 1e2a026494463d543d61da2880f3e52a5afa4192 (patch) | |
tree | c0454caf43c192ceea47f7bf5f80027a7129aeb9 /src/integration-tests/gnunet_testing.py.in | |
parent | b1bf8f35ca652ab6371760d7e38d62a1e1bdee9b (diff) |
- msg
Diffstat (limited to 'src/integration-tests/gnunet_testing.py.in')
-rw-r--r-- | src/integration-tests/gnunet_testing.py.in | 4 |
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: res = self.run() time.sleep(1) execs += 1 - if (res == False): - neg_cont (self) + if ((False == res) and (execs >= timeout)): + print ('Check had timeout after ' +str(timeout)+ 'seconds') else: pos_cont (self) return res |