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

Unified Diff: build/android/single_test_runner.py

Issue 9963086: Build and push chrome.pak for ui_unittests on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 8 years, 9 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 | « build/android/run_tests.py ('k') | build/android/test_package_executable.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/single_test_runner.py
diff --git a/build/android/single_test_runner.py b/build/android/single_test_runner.py
index 4a3faa8cb28b07094f0a6764b04167dd04c51392..bb7935295489e7151b2b9f60a466b53fb08d3ae7 100644
--- a/build/android/single_test_runner.py
+++ b/build/android/single_test_runner.py
@@ -110,7 +110,7 @@ class SingleTestRunner(BaseTestRunner):
filter_file_name = self._GetAdditionalEmulatorFilterName()
disabled_tests.extend(
run_tests_helper.GetExpectations(self._GetFilterFileName()))
- logging.info('About to update emulator\'s addtional filter (%s).'
+ logging.info('About to update emulator\'s additional filter (%s).'
% filter_file_name)
new_failed_tests = []
@@ -129,8 +129,8 @@ class SingleTestRunner(BaseTestRunner):
filter_file.write('# Addtional list of suppressions from emulator\n')
else:
filter_file.write('# List of suppressions\n')
- filter_file.write("""This file was automatically generated by run_tests.py
- """)
+ filter_file.write('# This file was automatically generated by %s\n'
+ % sys.argv[0])
filter_file.write('\n'.join(sorted(new_failed_tests)))
filter_file.write('\n')
filter_file.close()
« no previous file with comments | « build/android/run_tests.py ('k') | build/android/test_package_executable.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698