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

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: More clean-up. Fixes for Aura. Disabled tests for Android and IOS platforms. 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
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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'content/test/data/content-sniffer-test3-frame.txt.mock-http-headers', 163 'content/test/data/content-sniffer-test3-frame.txt.mock-http-headers',
164 'content/test/data/frame_tree', 164 'content/test/data/frame_tree',
165 'content/test/data/browser_plugin_naming_embedder.html', 165 'content/test/data/browser_plugin_naming_embedder.html',
166 'content/test/data/content-sniffer-test2.html.mock-http-headers', 166 'content/test/data/content-sniffer-test2.html.mock-http-headers',
167 'content/test/data/sync_xmlhttprequest_disallowed.html', 167 'content/test/data/sync_xmlhttprequest_disallowed.html',
168 'content/test/data/rwh_simple.html', 168 'content/test/data/rwh_simple.html',
169 'content/test/data/title2.html', 169 'content/test/data/title2.html',
170 'content/test/data/webkit', 170 'content/test/data/webkit',
171 'content/test/data/content-sniffer-test1.html', 171 'content/test/data/content-sniffer-test1.html',
172 'content/test/data/download', 172 'content/test/data/download',
173 'content/test/data/rwhv_compositing_static.html',
174 'content/test/data/content-sniffer-test2.html', 173 'content/test/data/content-sniffer-test2.html',
175 'content/test/data/simple_page.html', 174 'content/test/data/simple_page.html',
176 'content/test/data/google.mht', 175 'content/test/data/google.mht',
177 'content/test/data/site_per_process_main.html', 176 'content/test/data/site_per_process_main.html',
178 'content/test/data/gpu', 177 'content/test/data/gpu',
179 'content/test/data/onunload_cookie.html', 178 'content/test/data/onunload_cookie.html',
180 'content/test/data/textinput', 179 'content/test/data/textinput',
181 'content/test/data/navigate_opener.html', 180 'content/test/data/navigate_opener.html',
182 'content/test/data/dom_storage', 181 'content/test/data/dom_storage',
183 'content/test/data/sync_xmlhttprequest_during_unload.html', 182 'content/test/data/sync_xmlhttprequest_during_unload.html',
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 self.LaunchChromeTestServerSpawner() 380 self.LaunchChromeTestServerSpawner()
382 self.tool.SetupEnvironment() 381 self.tool.SetupEnvironment()
383 382
384 #override 383 #override
385 def TearDown(self): 384 def TearDown(self):
386 """Cleans up the test enviroment for the test suite.""" 385 """Cleans up the test enviroment for the test suite."""
387 self.tool.CleanUpEnvironment() 386 self.tool.CleanUpEnvironment()
388 if self._cleanup_test_files: 387 if self._cleanup_test_files:
389 self.adb.RemovePushedFiles() 388 self.adb.RemovePushedFiles()
390 super(TestRunner, self).TearDown() 389 super(TestRunner, self).TearDown()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698