From 2ab502106663ac32f9a5d87e4fdc950f5ac6f6b7 Mon Sep 17 00:00:00 2001 From: Artem Zhidkov Date: Sun, 12 Apr 2020 15:20:34 +0300 Subject: [PATCH] Increase the timeout for HDF test cases. --- test.hdfs/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.30.2