OLD | NEW |
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 Loading... |
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 Loading... |
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() |
OLD | NEW |