PDA

View Full Version : Scripts for multiple iterations PerformanceTest



gake
06-28-2007, 05:42 PM
Does anyone have any test scripts that I can see? Thanks

Gary

David (PassMark)
06-29-2007, 12:03 AM
Can you give a bit more detail of what you are after?

gake
06-29-2007, 12:08 PM
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.

Ian (PassMark)
07-02-2007, 02:52 AM
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