If in script added only one test, all work fine: When stop-flag-file (BURNINTEST_STOP) added in "BurnInTest" directory, test stoped and "BurnInTest" exit.. If in script two or more test added, test stopped but BurnInTest not closing. How to fix it?
my comand line
bit.exe -T -p -r -s c:\burnintest\tasks.bits
script:
SETDURATION 1
LOOP 1
{
LOG "CPU Test"
RUN CPU
#RUN MEMORY <-- if uncomment it, program stoped, but not exit when "BURNINTEST_STOP" added
}
EXIT
my comand line
bit.exe -T -p -r -s c:\burnintest\tasks.bits
script:
SETDURATION 1
LOOP 1
{
LOG "CPU Test"
RUN CPU
#RUN MEMORY <-- if uncomment it, program stoped, but not exit when "BURNINTEST_STOP" added
}
EXIT
Comment