I have a console application. Interaction with this application is done via TCP/IP.
I also have a test framework for it, which is basically a collection of BATCH scripts (...not my fault). What this test framework does for each test is basically this:
start /min "myapplication.exe"
and wait until verification is received that the application is up and running.One problem that I'm currently encountering is that the application exits prematurely due to some internal error. I would like to distinguish between failed tests, and the application crashing. The one and only indication I have for this, is the application's exit code.
So, I tried the following:
start /min cmd /c "myapplication.exe || echo %errorLevel% > exitcode.txt"
and then later on in the test scripts,
if exist exitcode.txt (
set /p exitcode=<exitcode.txt
echo ERROR: myapplication.exe returned exitcode %exitcode%.
goto error
) else (
goto do_processing
)
but for some strange reason, the text file never appears, even though I sometimes get a dialog about the application crashing, and even though I forcibly make it fail with a known non-zero exit code. The test just goes through do_processing
and (of course) results in failure.
EDIT When I run
start /min cmd /c "nonsense || echo %errorLevel% > test.txt"
I sometimes get a text file containing the string 9009, but other times that text file contains the string 0
, or sometimes 1
, ...What the...?!
EDIT2 If you type
cmd /k "nonsense || echo %errorLevel%"
(note the /k
option), you see 0
being printed in the new window, but if you then type echo %errorlevel%
, you get 1
....
I knew batch was not very sane, but it should at least be consistently insane...
Any ideas on what could be going on here?
To display the exit code for the last command you ran on the command line, use the following command: $ echo $?
You can also use the shortcut key Alt + F4 to close a Command Prompt window.
Exit Code Of Last Console Command Return True or False depending on whether the last console command or application exited without error or not: # Windows CMD C:\> if %ErrorLevel% equ 0 (echo True) else (echo False) # Windows PowerShell PS C:\> $?
Type "start [filename.exe]" into Command Prompt, replacing "filename" with the name of your selected file. Replace "[filename.exe]" with your program's name. This allows you to run your program from the file path.
As explained here you have to use call
instead of start
to be able to evaluate the exit codes. call
will launch the script in the same variable environment whereas start will run it in a new one which is not accessable from the first script.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With