]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
add commands: kill, test
authorCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 16 Feb 2015 10:05:46 +0000 (11:05 +0100)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Wed, 4 Mar 2015 12:46:54 +0000 (13:46 +0100)
add commands: kill, test

bin/salomeContext.py

index 30b4c57a73c37f417aa5eceafd14270ccd78cc5b..4e789a4eb278031a41f250a9958bc5fe4afe7d65 100644 (file)
@@ -40,7 +40,7 @@ Usage: salome [command] [options] [--config=<file,folder,...>]
 
 Commands:
 =========
-    start         Starts a SALOME session (through virtual application)
+    start           Starts a SALOME session (through virtual application)
     context       Initializes SALOME context.
     shell         Initializes SALOME context, and executes scripts passed
                   as command arguments
@@ -213,9 +213,9 @@ class SalomeContext:
     options = args[1:]
 
     availableCommands = {
-      'start' :   '_runAppli',
+      'start'   : '_runAppli',
       'context' : '_setContext',
-      'shell' :   '_runSession',
+      'shell'   : '_runSession',
       'connect' : '_runConsole',
       'kill'    : '_kill',
       'killall' : '_killAll',
@@ -359,9 +359,7 @@ class SalomeContext:
     return proc.communicate()
   #
 
-  def _runSession(self, args=None):
-    if args is None:
-      args = []
+  def _runSession(self, args=[]):
     sys.argv = ['runSession'] + args
     import runSession
     params, args = runSession.configureSession(args, exe="salome shell")