 Chromium Code Reviews
 Chromium Code Reviews Issue 13467035:
  Android: Fix data path for components/test/data/zip  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 13467035:
  Android: Fix data path for components/test/data/zip  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 Loading... | |
| 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() | 
| OLD | NEW |