Commit a3f95fd4 authored by yurys@chromium.org's avatar yurys@chromium.org

Show number of uknown instrumented objects on a single graph for all test...

Show number of uknown instrumented objects on a single graph for all test sites. No need to show each graph separately as our final goal is to make all of them flat zeros.


BUG=None
TBR=dennisjeffrey

Review URL: https://chromiumcodereview.appspot.com/11188036

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162422 0039d316-1c4b-4281-b951-d872f2087c98
parent c96b981c
......@@ -65,11 +65,8 @@ class DevToolsInstrumentedObjectsCheck(devtools_test_base.DevToolsTestBase):
return
logging.info('Got data for: %s, objects count = %d (unknown = %d) ' %
(hostname, counted_objects, counted_unknown_objects))
graph_name = 'DevTools Instrumented Objects - ' + hostname
pyauto_utils.PrintPerfResult(graph_name, 'Reported instrumented objects',
counted_objects, 'objects')
pyauto_utils.PrintPerfResult(graph_name, 'Not allocated by tcmalloc',
counted_unknown_objects, 'objects')
pyauto_utils.PrintPerfResult('DevTools Unknown Instrumented Objects',
hostname, counted_unknown_objects, 'objects')
if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment