Hey, |
Re: run script automatically in DOORS
Other switches expect actual DXL, which would look like this:
Batch programs have no "GUI" and so "infoBox" etc don't work. Sometimes a program will work on-demand but not in batch for other reasons; I don't recall all the nuance differences. -Louie |
Re: run script automatically in DOORS llandale - Wed Jul 18 12:52:48 EDT 2012
Other switches expect actual DXL, which would look like this:
Batch programs have no "GUI" and so "infoBox" etc don't work. Sometimes a program will work on-demand but not in batch for other reasons; I don't recall all the nuance differences. -Louie "C:\Program Files\IBM\Rational\DOORS\9.2\bin\doors.exe" -f "C:\TEMP" -u "user" -P "userpass" -d 36677@s31aes -D "current = read("/CAMERA 2 - Challenge L7/1112_I200/70_System_Test/System Test Specification",true);#include <ImportXML-TestRun_Camera.dxl>" pause this is the code i have used. so i manage to open doors from my batch file but i am not able to run automatically my TestRun. i also receive the message: -E- DXL: <Line:1> syntax error |
Re: run script automatically in DOORS Horatiu1 - Thu Jul 19 04:34:36 EDT 2012
This is just because of the quotation marks ". @echo off "C:\Program Files\IBM\Rational\DOORS\9.2\bin\doors.exe" -f "C:\TEMP" -u "user" -P "userpass" -d 36677@s31aes -D "current = read(\"/CAMERA 2 - Challenge L7/1112_I200/70_System_Test/System Test Specification\",true);#include <ImportXML-TestRun_Camera.dxl>" pause |
Re: run script automatically in DOORS Horatiu1 - Thu Jul 19 04:34:36 EDT 2012
Batch is the "-b" switch which will close DOORS when done. -Louie |