Bug 458093 - Update Talos to send graph server new test information

bustage fix (fixing fast talos test names) p/r=anodelman


git-svn-id: svn://10.0.0.236/trunk@256423 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
anodelman%mozilla.com 2009-03-03 02:47:10 +00:00
parent efc072e676
commit a0415a5f64

View File

@ -361,10 +361,10 @@ def results_from_graph(links, results_server):
else:
linkvalue = float(values[1])
linkdetail = values[2]
if linkName in ('tp_pbytes', 'tp_%cpu', 'tp_pbytes_nochrome', 'tp_%cpu_nochrome', 'tp_pbytes_fast', 'tp_%cpu_fast'):
if linkName in ('tp_pbytes', 'tp_%cpu', 'tp_pbytes_nochrome', 'tp_%cpu_nochrome', 'tp_fast_pbytes', 'tp_fast_%cpu'):
continue
if linkvalue > -1:
if linkName in ('tp_memset', 'tp_rss', 'tp_memset_nochrome', 'tp_rss_nochrome', 'tp_memset_fast', 'tp_rss_fast'): #measured in bytes
if linkName in ('tp_memset', 'tp_rss', 'tp_memset_nochrome', 'tp_rss_nochrome', 'tp_fast_memset', 'tp_fast_rss'): #measured in bytes
linkName += ": " + filesizeformat(linkvalue)
else:
linkName += ": " + str(linkvalue)