Announcement

Collapse
No announcement yet.

Looping from test script help

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

  • Looping from test script help

    How do you turn off the PassMark score display when you run a script with a loop? It sort of defeats the purpose to run through an automated loop if I have to come by and click "OK" after each run through the tests.

  • #2
    If you specify "RUN ALL" in the within a "LOOP {}" command then it is like running a "Run all Tests" within the loop, and the results per loop are shown. If you want to run all tests in a LOOP, and not see the results, then specify the subgroups seperately. e.g.:

    # Set the test preferences
    SETDISK "C:"
    SETCD "I:"
    SETDURATION 3
    SETCOMPUTERNAME "FreshWaterKL"
    SETCPUTESTPROCESSES 2
    SET3DMAX
    # Run the test 3 times
    LOOP 3
    {
    # Clear the results
    CLEARRESULTS
    # Run all tests except the 3D test
    RUN CPU_ALL
    RUN G2D_ALL
    RUN G3D_ALL
    RUN ME_ALL
    RUN DI_ALL
    RUN CD_ALL
    } REPORTSUMMARYCSV "results.csv"
    # Save a HTML report for the last test run
    EXPORTHTML "results.html"

    Regards,
    Ian

    Comment


    • #3
      Thanks

      Thank you very much.

      Comment

      Working...
      X