Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: chrome/test/functional/perf_endure.py

Issue 9309019: Add argument use_poll=True to asyncore.loop() calls in perf_snapshot.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/pyautolib/perf_snapshot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/perf_endure.py
diff --git a/chrome/test/functional/perf_endure.py b/chrome/test/functional/perf_endure.py
index 431dad66d1d91875e45135a3bde4250d2818c00f..10364770d887f09e1b9419ce8edd08c6d59d42ef 100644
--- a/chrome/test/functional/perf_endure.py
+++ b/chrome/test/functional/perf_endure.py
@@ -73,7 +73,9 @@ class ChromeEndureBaseTest(perf.BasePerfTest):
tab_proc_info.append(proc_info)
self.assertEqual(len(tab_proc_info), 1,
msg='Expected to find 1 %s tab process, but found %d '
- 'instead.' % (tab_title_substring, len(tab_proc_info)))
+ 'instead.\nCurrent process info:\n%s.' % (
+ tab_title_substring, len(tab_proc_info),
+ self.pformat(info)))
tab_proc_info = tab_proc_info[0]
return {
'private_mem': tab_proc_info['working_set_mem']['priv']
« no previous file with comments | « no previous file | chrome/test/pyautolib/perf_snapshot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698