From: vsr Date: Thu, 14 Feb 2013 07:00:53 +0000 (+0000) Subject: Fix hangup of make check due to problem with SALOME session killing X-Git-Tag: V6_main_FINAL~37 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=81873a4835e8d2649b9ca3024808593127d98d7b;p=modules%2Fgeom.git Fix hangup of make check due to problem with SALOME session killing --- diff --git a/doc/salome/examples/testme.py b/doc/salome/examples/testme.py index d8a98200d..f6c5e7837 100755 --- a/doc/salome/examples/testme.py +++ b/doc/salome/examples/testme.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -import unittest, sys +import unittest, sys, os class SalomeSession(object): def __init__(self, script): @@ -10,11 +10,10 @@ class SalomeSession(object): sys.argv += ["--modules=GEOM"] sys.argv += ["--execute=%s" % script] clt, d = runSalome.main() - self.port = d['port'] return def __del__(self): - port = self.port + port = os.getenv('NSPORT') import killSalomeWithPort killSalomeWithPort.killMyPort(port) return