From: Artem Zhidkov Date: Sun, 12 Apr 2020 12:20:34 +0000 (+0300) Subject: Increase the timeout for HDF test cases. X-Git-Tag: V9_5_0b1~52 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2ab502106663ac32f9a5d87e4fdc950f5ac6f6b7;p=modules%2Fshaper.git Increase the timeout for HDF test cases. --- diff --git a/test.hdfs/test.py b/test.hdfs/test.py index 0c2f27e7a..dc671d1e6 100644 --- a/test.hdfs/test.py +++ b/test.hdfs/test.py @@ -22,7 +22,7 @@ if __name__ == '__main__': proc = subprocess.Popen([salomeKernelDir + "/bin/salome/runSalome.py", "--modules", "SHAPER,GEOM", "--gui", "--ns-port-log=" + portlogfile, sourceDir + "/test_hdf.py", "args:" + testfile + "," + portlogfile + "," + testlogfile + "," + salomeKernelDir + "," + sourceDir], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) try: - proc.communicate(timeout = 300) + proc.communicate(timeout = 600) except TimeoutExpired: isOk = False proc.kill()