If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
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.
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
Comment