Activity log for bug #1369432

Date Who What changed Old value New value Message
2014-09-15 07:50:35 RaiMan bug added bug
2014-09-15 07:50:55 RaiMan summary [1.1.0-Beta] Jython: user parameters from command line (after -- or --args) not contained in sys.argv [1.1.0-Beta] Jython: user parameters from command line (after -- or --args) not contained in sys.argv -- workaround
2014-09-15 07:52:42 RaiMan summary [1.1.0-Beta] Jython: user parameters from command line (after -- or --args) not contained in sys.argv -- workaround [1.1.0-Beta] Jython: user parameters from command line (after -- or --args) not contained in sys.argv -- workaround until fixed
2014-09-15 07:52:49 RaiMan sikuli: status New Fix Committed
2014-09-15 07:52:54 RaiMan sikuli: importance Undecided Critical
2014-09-15 07:52:58 RaiMan sikuli: assignee RaiMan (raimund-hocke)
2014-09-15 07:53:01 RaiMan sikuli: milestone 1.1.0
2014-09-15 07:53:04 RaiMan description Hi, Previously I used the stable version 1.0.1 of sikuli and I could launch my sikuli script from command line with this line in my Python scipt: test_launcher_script.py p = subprocess.Popen(["/home/krgus1/devel/sikuli-1.0.1/runScript -r " + testPath + " --args " + SCRIPT_DIR + "/testConfig.config"], shell=True, cwd=SCRIPT_DIR) where testPath is the path to my sikuli test: /bla/bla/bla/Test.sikuli And SCRIPT_DIR is the path to the directory where this script is located. This worked I could access the arguments in my sikuli test script And then I updated to sikuli 1.1.0 p = subprocess.Popen(["/home/krgus1/devel/sikulix1.1.0/runsikulix -r " + testPath + " --args " + SCRIPT_DIR + "/testConfig.config"], shell=True, cwd=SCRIPT_DIR) The parameters are the same. And now I cannot get access to the arguments in sys.argv in my sikuli test script So either is something broken or I am doing it wrong BR KG ***** workaround the user parameters are available in the returned list Settings.getArgs() ----------------------------------------------- Hi, Previously I used the stable version 1.0.1 of sikuli and I could launch my sikuli script from command line with this line in my Python scipt: test_launcher_script.py p = subprocess.Popen(["/home/krgus1/devel/sikuli-1.0.1/runScript -r " + testPath +                                           " --args " + SCRIPT_DIR + "/testConfig.config"],                                          shell=True, cwd=SCRIPT_DIR) where testPath is the path to my sikuli test: /bla/bla/bla/Test.sikuli And SCRIPT_DIR is the path to the directory where this script is located. This worked I could access the arguments in my sikuli test script And then I updated to sikuli 1.1.0 p = subprocess.Popen(["/home/krgus1/devel/sikulix1.1.0/runsikulix -r " + testPath +                                           " --args " + SCRIPT_DIR + "/testConfig.config"],                                          shell=True, cwd=SCRIPT_DIR) The parameters are the same. And now I cannot get access to the arguments in sys.argv in my sikuli test script So either is something broken or I am doing it wrong BR KG