From 4abdedc982dea266d3b7c4e9d33b40ee7eae01a5 Mon Sep 17 00:00:00 2001 From: "anodelman%mozilla.com" Date: Wed, 29 Apr 2009 19:02:04 +0000 Subject: [PATCH] Bug 480413 - design test to monitor browser shut down time fix for bad test naming on nochrome talos (p/r=anodelman) git-svn-id: svn://10.0.0.236/trunk@257081 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/testing/performance/talos/run_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/testing/performance/talos/run_tests.py b/mozilla/testing/performance/talos/run_tests.py index 23a7a4a6a7d..5de85d4c50d 100755 --- a/mozilla/testing/performance/talos/run_tests.py +++ b/mozilla/testing/performance/talos/run_tests.py @@ -233,7 +233,9 @@ def send_to_graph(results_server, results_link, machine, date, browser_config, r for cd in counter_dump: for count_type in cd: vals = [[x, 'NULL'] for x in cd[count_type]] - counterName = testname + '_' + shortName(count_type) + browser_config['test_name_extension'] + counterName = testname + '_' + shortName(count_type) + if testname not in ('ts', 'twinopen'): + counterName += browser_config['test_name_extension'] utils.stamped_msg("Generating results file: " + counterName, "Started") files.append(construct_file(machine, counterName, browser_config['branch_name'], browser_config['sourcestamp'], browser_config['buildid'], date, vals)) utils.stamped_msg("Generating results file: " + counterName, "Stopped")