Announcement

Collapse
No announcement yet.

Scripts for multiple iterations PerformanceTest

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

  • Scripts for multiple iterations PerformanceTest

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

    Gary

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

    Comment


    • #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


      • #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...
        X