]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Adapted salome_test to new PARAVIS architecture.
authorabn <adrien.bruneton@cea.fr>
Fri, 17 Oct 2014 07:53:10 +0000 (09:53 +0200)
committerabn <adrien.bruneton@cea.fr>
Fri, 17 Oct 2014 07:53:10 +0000 (09:53 +0200)
src/KERNEL_PY/salome_test.py

index fb133259e473670e3de2928f29290c38ad9142ed..c8a2c380a0ed0fadc38222ae032a0064dc62c8db 100755 (executable)
@@ -63,7 +63,7 @@ print "======================================================================"
 print "           %d. Check modules availability in the module catalog " % step; step+=1
 print "======================================================================"
 
-for module in [ "GEOM", "SMESH", "MEDOPFactory", "PARAVIS"]:
+for module in [ "GEOM", "SMESH", "MEDOPFactory", "PVSERVER"]:
     print
     print "--- Check %s ..." % module
     comp = catalog.GetComponent(module)
@@ -351,12 +351,12 @@ print "======================================================================"
 
 if salome.hasDesktop(): # in gui mode
 
-    print "**** Importing paravis... It can take some time."
+    print "**** Importing pvserver... It can take some time."
     from presentations import *
-    import paravis
+    import pvserver
     import pvsimple
     
-    my_paravis = paravis.myParavis
+    my_paravis = pvserver.myPVServerService
     
     #====================Stage1: Importing MED file====================
     
@@ -365,7 +365,7 @@ if salome.hasDesktop(): # in gui mode
     print 'Import "ResOK_0000.med"...............',
     medFileName = "ResOK_0000.med"
     medFile = os.path.join(os.getenv('DATA_DIR'), 'MedFiles', medFileName)
-    my_paravis.ImportFile(medFile)
+    pvsimple.MEDReader( FileName=medFile )
     med_reader = pvsimple.GetActiveSource()
     
     if med_reader is None: