Salome HOME
Merge branch 'omu/multijob'
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / TestLifeCycleCORBA.py
index 3107465f30b4c50b72a25ed825921d16830e059c..94c70e0220a49ca80fed8c3ee504526ab8485e93 100644 (file)
@@ -1,5 +1,5 @@
 #  -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -7,7 +7,7 @@
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
-# version 2.1 of the License.
+# version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -44,10 +44,10 @@ try :
     engine=lcc.FindComponent(param,'SalomeTestComponent')
     engine.Coucou(1)
 except :
-    print 'lcc.FindOrLoad_Component("FactoryServer","SalomeTestComponent") failed'
+    print('lcc.FindOrLoad_Component("FactoryServer","SalomeTestComponent") failed')
 
 import sys
-import CORBA
+from omniORB import CORBA
 import CosNaming
 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
 obj = orb.resolve_initial_references("NameService")
@@ -71,7 +71,7 @@ try :
     engineCPP=lcc.FindComponent(myContainerparamsCPP,'SalomeTestComponent')
     engineCPP.Coucou(1)
 except :
-    print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) C++ failed'
+    print('ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) C++ failed')
 
 try :
     myContainerparamsPy = LifeCycleCORBA.ContainerParameters()
@@ -85,5 +85,5 @@ try :
     enginePy=lcc.FindComponent(myContainerparamsPy,'SALOME_TestComponentPy')
     enginePy.Coucou(1)
 except :
-    print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) Python failed'
+    print('ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) Python failed')