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

Side by Side Diff: build/android/pylib/gtest/test_runner.py

Issue 14495016: Fix flaky test: RenderWidgetHostViewBrowserTest.CopyFromBackingStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improve comment regarding compositing mode maybe being tested. Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import glob 5 import glob
6 import logging 6 import logging
7 import os 7 import os
8 8
9 from pylib import android_commands 9 from pylib import android_commands
10 from pylib import constants 10 from pylib import constants
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 'content/test/data/content-sniffer-test3-frame.txt.mock-http-headers', 162 'content/test/data/content-sniffer-test3-frame.txt.mock-http-headers',
163 'content/test/data/frame_tree', 163 'content/test/data/frame_tree',
164 'content/test/data/browser_plugin_naming_embedder.html', 164 'content/test/data/browser_plugin_naming_embedder.html',
165 'content/test/data/content-sniffer-test2.html.mock-http-headers', 165 'content/test/data/content-sniffer-test2.html.mock-http-headers',
166 'content/test/data/sync_xmlhttprequest_disallowed.html', 166 'content/test/data/sync_xmlhttprequest_disallowed.html',
167 'content/test/data/rwh_simple.html', 167 'content/test/data/rwh_simple.html',
168 'content/test/data/title2.html', 168 'content/test/data/title2.html',
169 'content/test/data/webkit', 169 'content/test/data/webkit',
170 'content/test/data/content-sniffer-test1.html', 170 'content/test/data/content-sniffer-test1.html',
171 'content/test/data/download', 171 'content/test/data/download',
172 'content/test/data/rwhv_compositing_static.html',
173 'content/test/data/content-sniffer-test2.html', 172 'content/test/data/content-sniffer-test2.html',
174 'content/test/data/simple_page.html', 173 'content/test/data/simple_page.html',
175 'content/test/data/google.mht', 174 'content/test/data/google.mht',
176 'content/test/data/site_per_process_main.html', 175 'content/test/data/site_per_process_main.html',
177 'content/test/data/gpu', 176 'content/test/data/gpu',
178 'content/test/data/onunload_cookie.html', 177 'content/test/data/onunload_cookie.html',
179 'content/test/data/textinput', 178 'content/test/data/textinput',
180 'content/test/data/navigate_opener.html', 179 'content/test/data/navigate_opener.html',
181 'content/test/data/dom_storage', 180 'content/test/data/dom_storage',
182 'content/test/data/sync_xmlhttprequest_during_unload.html', 181 'content/test/data/sync_xmlhttprequest_during_unload.html',
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 self.LaunchChromeTestServerSpawner() 379 self.LaunchChromeTestServerSpawner()
381 self.tool.SetupEnvironment() 380 self.tool.SetupEnvironment()
382 381
383 #override 382 #override
384 def TearDown(self): 383 def TearDown(self):
385 """Cleans up the test enviroment for the test suite.""" 384 """Cleans up the test enviroment for the test suite."""
386 self.tool.CleanUpEnvironment() 385 self.tool.CleanUpEnvironment()
387 if self._cleanup_test_files: 386 if self._cleanup_test_files:
388 self.adb.RemovePushedFiles() 387 self.adb.RemovePushedFiles()
389 super(TestRunner, self).TearDown() 388 super(TestRunner, self).TearDown()
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698