Activity log for bug #1893319

Date Who What changed Old value New value Message
2020-08-28 07:53:22 umesh bug added bug
2020-09-04 12:35:37 umesh description REGRESSION - issue detected on Sikuli : 2.0.x OS : win 10 - 64 bit [version 1903] java version : on both java 8 and java 11 OK in Sikuli 111. All following command works as expected in Sikuli 111. Run following command : cmd1 = 'cmd.exe /c mspaint "C:\temp\OneImage.png"' x = openApp(cmd1) Expected Behavior : Should open paint app with OneImage.png open in it Actual Behavior : Opens the Sikuli home file path in explorer window cmd2 = 'cmd.exe /c mspaint' x = openApp(cmd2) Expected : Should open Untitled paint app (blank) Actual : Opens the Sikuli home file path in explorer window cmd3 = 'cmd.exe @cmd /k "dir"' x = openApp(cmd3) Expected : Should print output of dir in command window Actual : Activates command window from which sikuli is launched REGRESSION - issue detected on Sikuli : 2.0.x OS : win 10 - 64 bit [version 1903] java version : on both java 8 and java 11 OK in Sikuli 111. All following command works as expected in Sikuli 111. Run following command : cmd1 = 'cmd.exe /c mspaint "C:\\temp\\OneImage.png"' x = openApp(cmd1) Expected Behavior : Should open paint app with OneImage.png open in it Actual Behavior : Opens the Sikuli home file path in explorer window cmd2 = 'cmd.exe /c mspaint' x = openApp(cmd2) Expected : Should open Untitled paint app (blank) Actual : Opens the Sikuli home file path in explorer window cmd3 = 'cmd.exe @cmd /k "dir"' x = openApp(cmd3) Expected : Should print output of dir in command window Actual : Activates command window from which sikuli is launched
2020-09-04 13:04:03 RaiMan sikuli: status New In Progress
2020-09-04 13:04:06 RaiMan sikuli: importance Undecided Medium
2020-09-04 13:04:09 RaiMan sikuli: assignee RaiMan (raimund-hocke)
2020-09-04 13:04:43 RaiMan sikuli: milestone 2.0.5
2020-09-04 13:05:14 RaiMan summary [Sikuli 2.0.x] Issue in openApp with 'cmd.exe /c ...' command [Sikuli 2.0.x] Issue in openApp with 'cmd.exe /c ...' command --- workaround
2020-09-04 13:07:44 RaiMan description REGRESSION - issue detected on Sikuli : 2.0.x OS : win 10 - 64 bit [version 1903] java version : on both java 8 and java 11 OK in Sikuli 111. All following command works as expected in Sikuli 111. Run following command : cmd1 = 'cmd.exe /c mspaint "C:\\temp\\OneImage.png"' x = openApp(cmd1) Expected Behavior : Should open paint app with OneImage.png open in it Actual Behavior : Opens the Sikuli home file path in explorer window cmd2 = 'cmd.exe /c mspaint' x = openApp(cmd2) Expected : Should open Untitled paint app (blank) Actual : Opens the Sikuli home file path in explorer window cmd3 = 'cmd.exe @cmd /k "dir"' x = openApp(cmd3) Expected : Should print output of dir in command window Actual : Activates command window from which sikuli is launched **************** possible workaround: in Jython: use os.Popen() in Java: use ProcessBuilder -------------------------------------------- REGRESSION - issue detected on Sikuli : 2.0.x OS : win 10 - 64 bit [version 1903] java version : on both java 8 and java 11 OK in Sikuli 111. All following command works as expected in Sikuli 111. Run following command : cmd1 = 'cmd.exe /c mspaint "C:\\temp\\OneImage.png"' x = openApp(cmd1) Expected Behavior : Should open paint app with OneImage.png open in it Actual Behavior : Opens the Sikuli home file path in explorer window cmd2 = 'cmd.exe /c mspaint' x = openApp(cmd2) Expected : Should open Untitled paint app (blank) Actual : Opens the Sikuli home file path in explorer window cmd3 = 'cmd.exe @cmd /k "dir"' x = openApp(cmd3) Expected : Should print output of dir in command window Actual : Activates command window from which sikuli is launched
2021-02-09 08:26:44 RaiMan summary [Sikuli 2.0.x] Issue in openApp with 'cmd.exe /c ...' command --- workaround [2.0.4] Issue in openApp with 'cmd.exe /c ...' command --- workaround