Scripts for multiple iterations PerformanceTest

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gake
    Junior Member
    • Jun 2007
    • 5

    #1

    Scripts for multiple iterations PerformanceTest

    Does anyone have any test scripts that I can see? Thanks

    Gary
  • David (PassMark)
    Administrator
    • Jan 2003
    • 11092

    #2
    Can you give a bit more detail of what you are after?

    Comment

    • gake
      Junior Member
      • Jun 2007
      • 5

      #3
      We are looking at running Performance Test around 50 times to get a mean average of what the performance is on these new Dell 690 boxes we are receiving.

      Comment

      • Ian (PassMark)
        Senior Member
        • Feb 2004
        • 822

        #4
        At this stage you can't specify an overall script duration, but rather the number of test iterations. So to test for 10 iterations (roughly 50 minutes) and store the results of each iteration in a CSV file, which you can then maniplate in a spreadsheet to get the averages etc) you could use something like:

        # Set the desired test preferences before running this script
        # Supress test warnings
        SUPPRESSWARNINGS ON
        # Run the test 10 times
        LOOP 10
        {
        # Clear the results
        CLEARRESULTS
        # Run all tests
        RUN ALL
        } REPORTSUMMARYCSV "results.csv"

        # Exit PerformanceTest after completing the script
        EXIT

        Regards,
        Ian

        Comment

        Working...