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

Unified Diff: build/android/pylib/gtest/test_runner.py

Issue 18519011: [Android] Partial revert of r209283. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/gtest/test_runner.py
diff --git a/build/android/pylib/gtest/test_runner.py b/build/android/pylib/gtest/test_runner.py
index a487214797c89ac1540db78fea807c1c67a8bfba..e1b269508de099c755c9ceb6c706fb970b492e46 100644
--- a/build/android/pylib/gtest/test_runner.py
+++ b/build/android/pylib/gtest/test_runner.py
@@ -25,7 +25,7 @@ import run_isolated
_ISOLATE_FILE_PATHS = {
- 'base_unittests': 'base/base_unittests.isolate',
+ #'base_unittests': 'base/base_unittests.isolate',
#'net_unittests': 'net/net_unittests.isolate',
#'unit_tests': 'chrome/unit_tests.isolate',
#'content_browsertests': 'content/content_browsertests.isolate',
@@ -74,7 +74,11 @@ def _GetDataFilesForTestSuite(product_dir, test_suite_basename):
# Ideally, we'd just push all test data. However, it has >100MB, and a lot
# of the files are not relevant (some are used for browser_tests, others for
# features not supported, etc..).
- if test_suite_basename == 'unit_tests':
+ if test_suite_basename == 'base_unittests':
+ return [
+ 'base/test/data/',
+ ]
+ elif test_suite_basename == 'unit_tests':
test_files = [
'base/test/data/',
'chrome/test/data/download-test1.lib',
« 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