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

Side by Side Diff: build/android/pylib/test_result.py

Issue 10693110: [android] Split top-level scripts and libraries from build/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright on __init__.py, removed #! on some pylib/ files. Created 8 years, 5 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 | « build/android/pylib/test_package_executable.py ('k') | build/android/pylib/valgrind_tools.py » ('j') | 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 5
6 import logging 6 import logging
7 7
8 8
9 # Language values match constants in Sponge protocol buffer (sponge.proto). 9 # Language values match constants in Sponge protocol buffer (sponge.proto).
10 JAVA = 5 10 JAVA = 5
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 len(self.crashed) + len(self.unknown)) 121 len(self.crashed) + len(self.unknown))
122 summary_string += 'PASSED=%d\n' % (len(self.ok)) 122 summary_string += 'PASSED=%d\n' % (len(self.ok))
123 summary_string += 'FAILED=%d %s\n' % (len(self.failed), 123 summary_string += 'FAILED=%d %s\n' % (len(self.failed),
124 [t.name for t in self.failed]) 124 [t.name for t in self.failed])
125 summary_string += 'CRASHED=%d %s\n' % (len(self.crashed), 125 summary_string += 'CRASHED=%d %s\n' % (len(self.crashed),
126 [t.name for t in self.crashed]) 126 [t.name for t in self.crashed])
127 summary_string += 'UNKNOWN=%d %s\n' % (len(self.unknown), 127 summary_string += 'UNKNOWN=%d %s\n' % (len(self.unknown),
128 [t.name for t in self.unknown]) 128 [t.name for t in self.unknown])
129 logging.critical(summary_string) 129 logging.critical(summary_string)
130 return summary_string 130 return summary_string
OLDNEW
« no previous file with comments | « build/android/pylib/test_package_executable.py ('k') | build/android/pylib/valgrind_tools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698