diff options
author | Merov Linden <merov@lindenlab.com> | 2011-04-07 16:41:57 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2011-04-07 16:41:57 -0700 |
commit | 379e2e138d801ebf7f13d29512f76298aacf3dc5 (patch) | |
tree | ee733d91c58522043f251bd77d04b0e26a5c98d2 | |
parent | e752e918283acf95c1ed33d92a7bf34bbca83071 (diff) |
STORM-746 : Fix bug in performance report output
-rw-r--r-- | indra/integration_tests/llimage_libtest/llimage_libtest.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp index 31d3e18877..1466e44324 100644 --- a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp +++ b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp @@ -521,25 +521,25 @@ int main(int argc, char** argv) } } - // Stop the perf gathering system if needed - if (LLFastTimer::sMetricLog) - { - LLMetricPerformanceTesterBasic::deleteTester(LLFastTimer::sLogName); - sAllDone = true; - } - // Output perf data if requested by user if (analyze_performance) { - std::cout << "Analyzing performance" << std::endl; - std::string baseline_name = LLFastTimer::sLogName + "_baseline.slp"; std::string current_name = LLFastTimer::sLogName + ".slp"; std::string report_name = LLFastTimer::sLogName + "_report.csv"; + std::cout << "Analyzing performance, check report in : " << report_name << std::endl; + LLMetricPerformanceTesterBasic::doAnalysisMetrics(baseline_name, current_name, report_name); } + // Stop the perf gathering system if needed + if (LLFastTimer::sMetricLog) + { + LLMetricPerformanceTesterBasic::deleteTester(LLFastTimer::sLogName); + sAllDone = true; + } + // Cleanup and exit LLImage::cleanupClass(); if (fast_timer_log_thread) |