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

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

Issue 13467035: Android: Fix data path for components/test/data/zip (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | no next file » | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'chrome/test/data/bookmarks/', 53 'chrome/test/data/bookmarks/',
54 'chrome/test/data/components/', 54 'chrome/test/data/components/',
55 'chrome/test/data/extensions/json_schema_test.js', 55 'chrome/test/data/extensions/json_schema_test.js',
56 'chrome/test/data/History/', 56 'chrome/test/data/History/',
57 'chrome/test/data/json_schema_validator/', 57 'chrome/test/data/json_schema_validator/',
58 'chrome/test/data/pref_service/', 58 'chrome/test/data/pref_service/',
59 'chrome/test/data/top_sites/', 59 'chrome/test/data/top_sites/',
60 'chrome/test/data/web_app_info/', 60 'chrome/test/data/web_app_info/',
61 'chrome/test/data/web_database', 61 'chrome/test/data/web_database',
62 'chrome/test/data/webui/', 62 'chrome/test/data/webui/',
63 'chrome/test/data/zip', 63 'components/test/data/zip',
Paweł Hajdan Jr. 2013/04/08 19:58:07 nit: Keep the list sorted.
64 'chrome/third_party/mock4js/', 64 'chrome/third_party/mock4js/',
65 'content/browser/gpu/software_rendering_list.json', 65 'content/browser/gpu/software_rendering_list.json',
66 'net/data/cache_tests/insert_load1', 66 'net/data/cache_tests/insert_load1',
67 'net/data/cache_tests/dirty_entry5', 67 'net/data/cache_tests/dirty_entry5',
68 'net/data/ssl/certificates/', 68 'net/data/ssl/certificates/',
69 'third_party/accessibility-developer-tools/gen/axs_testing.js', 69 'third_party/accessibility-developer-tools/gen/axs_testing.js',
70 'ui/base/test/data/data_pack_unittest', 70 'ui/base/test/data/data_pack_unittest',
71 ] 71 ]
72 if test_suite_basename == 'unit_tests': 72 if test_suite_basename == 'unit_tests':
73 test_files += ['chrome/test/data/simple_open_search.xml'] 73 test_files += ['chrome/test/data/simple_open_search.xml']
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 self.LaunchChromeTestServerSpawner() 373 self.LaunchChromeTestServerSpawner()
374 self.tool.SetupEnvironment() 374 self.tool.SetupEnvironment()
375 375
376 #override 376 #override
377 def TearDown(self): 377 def TearDown(self):
378 """Cleans up the test enviroment for the test suite.""" 378 """Cleans up the test enviroment for the test suite."""
379 self.tool.CleanUpEnvironment() 379 self.tool.CleanUpEnvironment()
380 if self._cleanup_test_files: 380 if self._cleanup_test_files:
381 self.adb.RemovePushedFiles() 381 self.adb.RemovePushedFiles()
382 super(TestRunner, self).TearDown() 382 super(TestRunner, self).TearDown()
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698