Salome HOME
Fix hangup of make check due to problem with SALOME session killing
authorvsr <vsr@opencascade.com>
Thu, 14 Feb 2013 07:00:36 +0000 (07:00 +0000)
committervsr <vsr@opencascade.com>
Thu, 14 Feb 2013 07:00:36 +0000 (07:00 +0000)
doc/salome/examples/testme.py

index b1328b5967c810501d98fbfa7b1957fb67267fb3..c870ab656b0bf27485ec4fb03a260c49bf964cb9 100755 (executable)
@@ -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,MED,SMESH"]
         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