Announcement

Collapse
No announcement yet.

How to add result summary in Log files?

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

  • How to add result summary in Log files?

    I am running the Burn test using script, I want to save the log file for the each loop. SETLOG command in script is used save the log, but the result summary is not getting added in the log. How can I add the result summary in log.

    If I save the log file manually after the test complete, the result summary is added in the log.

  • #2
    What does your SETLOG command look like? Can you provide the whole command and parameter you are using?

    Comment


    • #3
      SETLOG LOG yes NAME "Test1.html" PREFIX "RD_LT_001" TIME yes
      SETLOG REPORT HTML LOGLEVEL yes TRACELEVEL no SUM yes LINES 10000
      SETLOG PERIODIC 2 FILE ACCUMULATE

      Comment


      • #4
        ​Can you post or send in your entire script?

        I'm not able to reproduce the issue using the test script below. The results summary are written to the log file at the end of each loop.

        Code:
        SETLOG LOG yes NAME "Test1.html" PREFIX "RD_LT_001" TIME yes
        SETLOG REPORT HTML LOGLEVEL yes TRACELEVEL no SUM yes LINES 10000
        SETLOG PERIODIC 2 FILE ACCUMULATE
        LOG "Start"
        SETDURATION 3
        LOOP 3
        {
          LOG "CPU Test"
          RUN CPU
        }
        The images below are a snippet of the log file that was created when I ran the script in BurnInTest. NOTE: Since test duration is 3 minutes (SETDURATION 3) and periodic logging is set to 2 minutes (PERIODIC 2). There is an interim results summary in the log file.

        Click image for larger version

Name:	logtest1.png
Views:	132
Size:	17.1 KB
ID:	51191Click image for larger version

Name:	logtest2.png
Views:	133
Size:	15.2 KB
ID:	51192

        Comment


        • #5
          SETLOG LOG yes NAME "Test1.html" PREFIX "RD_LT_001" TIME yes
          SETLOG REPORT HTML LOGLEVEL yes TRACELEVEL no SUM yes LINES 10000
          SETLOG PERIODIC 2 FILE ACCUMULATE
          LOG "Start"
          LOAD "Test.bitcfg"
          RUN CONFIG

          After running this config file, we need the test report with result summary.

          "Test.bitcfg" is configured with different tests and the duration is 3 minutes.

          Here I have attached the log file generated through the above script.
          Attached Files
          Last edited by Thandapani; Aug-16-2021, 08:49 AM.

          Comment


          • #6
            Looking at the log does the "Test.bitcfg" configuration disable or change the log filename?

            You should move the SETLOG command to after you have loaded the configuration file, any loading of a configuration file will overwrite previously set options with the ones from the config file.

            Comment

            Working...
            X