Announcement

Collapse
No announcement yet.

Scripting's log does not include 'RESULT SUMMARY'

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Scripting's log does not include 'RESULT SUMMARY'

    hi,
    i am writing a script to automate a production test. running 2 different test config file one after another in Win10: test_config1.bticfg and followed by test_config2.bitcfg. After completing the 'EXIT' in script, the log file does not show the 'RESULT SUMMARY'.
    The output log is attached here. Below is my script:

    set /p TECHNICIAN=Enter Technician Name:
    set /p SERIAL=Enter Serial Number:
    #set /p NOTES=Enter notes (COM1 or COM2):
    (
    echo SETCUSTOMER "ALI"
    echo SETTECHNICIAN "%TECHNICIAN%"
    echo SETSERIAL "%SERIAL%"
    echo SETNOTES "COM1"
    echo SETLOG LOG yes NAME "%SERIAL%_COM1.log" TIME yes REPORT text LOGLEVEL no SUM yes
    echo LOAD "test_config1.bitcfg"
    echo RUN CONFIG
    echo SETNOTES "COM2"
    echo SETLOG LOG yes NAME "%SERIAL%_COM2.log" TIME yes REPORT text LOGLEVEL no SUM yes
    echo MESSAGE "Insert COM2 Loopback Plug and Press OK"
    echo LOAD "test_config2.bitcfg"
    echo RUN CONFIG
    echo EXIT
    ) >"script.bits"
    "C:\Program Files\BurnInTest\bit.exe" -S script.bits

    any idea what am I missing?
    Attached Files

  • #2
    Doing a load of "test_config1.bitcfg" is likely overwriting the log file from SETLOG, it's best to use LOAD first and then alter the settings from the config file using the available scripting commands.

    Comment

    Working...
    X