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

Unified Diff: scripts/slave/gtest/test_result.py

Issue 10636008: Convert runtest to have a built-in annotator. (Closed) Base URL: http://git.chromium.org/chromium/tools/build.git@master
Patch Set: Fix nits. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/common/gtest_utils.py ('k') | scripts/slave/gtest_slave_utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/gtest/test_result.py
diff --git a/scripts/slave/gtest/test_result.py b/scripts/slave/gtest/test_result.py
index f27b7d2c236f09e6b6c2a8df23f17a30c53f171c..2e90a21071999cc21ce047aa861d59a664992039 100644
--- a/scripts/slave/gtest/test_result.py
+++ b/scripts/slave/gtest/test_result.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -26,7 +26,7 @@ class TestResult(object):
pass
if not_run:
- self.modifier = self.DISABLED
+ self.modifier = self.DISABLED
elif test_name.startswith('FAILS_'):
self.modifier = self.FAILS
elif test_name.startswith('FLAKY_'):
« no previous file with comments | « scripts/common/gtest_utils.py ('k') | scripts/slave/gtest_slave_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698