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

Unified Diff: build/android/pylib/base/base_test_result.py

Issue 18323020: Updates the test runner script exit codes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes Python dispatch issues in test_runner.py Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/buildbot/bb_utils.py ('k') | build/android/pylib/base/shard.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/base/base_test_result.py
diff --git a/build/android/pylib/base/base_test_result.py b/build/android/pylib/base/base_test_result.py
index ba438e1788f146aecdfbc1f8e231a2788db2be71..ebf9e71ef01b063d033ac1d693e8cf92ffe4465d 100644
--- a/build/android/pylib/base/base_test_result.py
+++ b/build/android/pylib/base/base_test_result.py
@@ -4,7 +4,6 @@
"""Module containing base test results classes."""
-
class ResultType(object):
"""Class enumerating test types."""
PASS = 'PASS'
@@ -22,6 +21,7 @@ class ResultType(object):
class BaseTestResult(object):
"""Base class for a single test result."""
+
def __init__(self, name, test_type, log=''):
"""Construct a BaseTestResult.
@@ -64,6 +64,7 @@ class BaseTestResult(object):
class TestRunResults(object):
"""Set of results for a test run."""
+
def __init__(self):
self._results = set()
« no previous file with comments | « build/android/buildbot/bb_utils.py ('k') | build/android/pylib/base/shard.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698