]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
[minor] changes in information messages
authorCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 18 Mar 2014 10:16:06 +0000 (11:16 +0100)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 18 Mar 2014 10:16:06 +0000 (11:16 +0100)
bin/appliskel/tests/concurrentSession/TestConcurrentSession.py
bin/appliskel/tests/concurrentSession/TestMinimalExample.py
bin/salomeContextUtils.py.in

index 5f8376a08bb4d2983ea5a5c20512cd94d12999f9..1384b21e6406cc9ba94833efdde64f6d2637d1a9 100644 (file)
@@ -54,7 +54,7 @@ class TestConcurrentLaunch(unittest.TestCase):
   def test02_MultiSession(self):
     print "** Testing multi sessions **"
     jobs = []
-    for i in range(3):
+    for i in range(9):
       p = multiprocessing.Process(target=self.session, args=(["hello.py"],))
       jobs.append(p)
       p.start()
@@ -77,7 +77,7 @@ class TestConcurrentLaunch(unittest.TestCase):
   def test04_MultiAppli(self):
     print "** Testing multi appli **"
     jobs = []
-    for i in range(3):
+    for i in range(9):
       p = multiprocessing.Process(target=self.test03_SingleAppli)
       jobs.append(p)
       p.start()
@@ -90,7 +90,7 @@ class TestConcurrentLaunch(unittest.TestCase):
 if __name__ == "__main__":
   path_to_launcher = os.getenv("SALOME_LAUNCHER")
   if not path_to_launcher:
-    msg = "Error: please set SALOME_LAUNCHER variable to the salome command of your application folder."
+    msg = "Error: please set SALOME_LAUNCHER variable to the salome command in your application folder."
     raise Exception(msg)
 
   if not os.path.isfile("hello.py"):
index b740cdd00b88528776982fbcf62be49905f82f8f..7525e4f1b1d8ef3d991016632bc5101c00ee07ad 100644 (file)
@@ -139,7 +139,7 @@ class TestMinimalExample(unittest.TestCase):
 if __name__ == "__main__":
   omniorb_user_path = os.getenv("OMNIORB_USER_PATH")
   if not omniorb_user_path:
-    msg = "Error: please set OMNIORB_USER_PATH variable to the salome KERNEL install folder."
+    msg = "Error: please set OMNIORB_USER_PATH variable."
     raise Exception(msg)
 
   try:
index 696a99b4f28a19b626461c9255828cbd89f7ddf1..3f517dcf73b3c154d03c8d0dc99170cce3e16ac0 100644 (file)
@@ -196,8 +196,8 @@ def formatScriptsAndArgs(scriptArgs=[]):
 # an exception is raised if check fails. It allows users for choosing a specific folder.
 # Else the function sets OMNIORB_USER_PATH this way:
 # - If APPLI environment variable is set, OMNIORB_USER_PATH is set to ${APPLI}/USERS.
-#   The function does not check USERS folder existence or wrute access. This folder
-#   must exist ; this is the case if SALOME virtual application has been create using
+#   The function does not check USERS folder existence or write access. This folder
+#   must exist ; this is the case if SALOME virtual application has been created using
 #   appli_gen.py script.
 # - Else OMNIORB_USER_PATH is set to user home directory.
 def setOmniOrbUserPath():