Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
increase the default timeout value to 10 seconds
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 7 Mar 2017 19:39:17 +0000 (20:39 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 7 Mar 2017 19:39:17 +0000 (20:39 +0100)
doc/manpage/tesh.pod
tools/tesh/tesh.py

index ba62863..7d9130c 100755 (executable)
@@ -109,7 +109,7 @@ The I<expect signal> construct applies only to the next command block.
 
 =head2 Timeouts
 
-By default, no command is allowed to run more than 5 seconds. You can
+By default, no command is allowed to run more than 10 seconds. You can
 change this value as follows:
 
     # Allow some more time to the command
index d6a2966..1985a5d 100755 (executable)
@@ -5,8 +5,7 @@
 tesh -- testing shell
 ========================
 
-Copyright (c) 2012-2016. The SimGrid Team.
-All rights reserved.
+Copyright (c) 2012-2017. The SimGrid Team. All rights reserved.
 
 This program is free software; you can redistribute it and/or modify it
 under the terms of the license (GNU LGPL) which comes with this package.
@@ -180,7 +179,7 @@ class Cmd(object):
         self.input_pipe = []
         self.output_pipe_stdout = []
         self.output_pipe_stderr = []
-        self.timeout = 5
+        self.timeout = 10
         self.args = None
         self.linenumber = -1