summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 14:56:41 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 14:56:41 +0000
commit113550f55b0c70e49b755a41f3dc4fffaa68d573 (patch)
tree22092e432bd3a3dac9f3cc460778acae9857a128 /tools
parentd331c7158d215fccb747b1b02cf5c174af9fa811 (diff)
downloadchromium_src-113550f55b0c70e49b755a41f3dc4fffaa68d573.zip
chromium_src-113550f55b0c70e49b755a41f3dc4fffaa68d573.tar.gz
chromium_src-113550f55b0c70e49b755a41f3dc4fffaa68d573.tar.bz2
Return 88 instead of -88 from the purify scripts since
the magic value in buildbot changed. TEST=Buildbot will turn orange if there is a warning BUG=None Review URL: http://codereview.chromium.org/126048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/purify/common.py2
-rw-r--r--tools/purify/purify_analyze.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/purify/common.py b/tools/purify/common.py
index ea039e8..4969234 100644
--- a/tools/purify/common.py
+++ b/tools/purify/common.py
@@ -282,7 +282,7 @@ class Rational(object):
def Analyze(self):
'''Analyze step after a successful Execution. Should be overridden
by the subclasser if instrumentation is desired.
- Returns 0 for success, -88 for warning (see ReturnCodeCommand) and anything
+ Returns 0 for success, 88 for warning (see ReturnCodeCommand) and anything
else for error
'''
return -1
diff --git a/tools/purify/purify_analyze.py b/tools/purify/purify_analyze.py
index 2c02b0c..d08c901 100644
--- a/tools/purify/purify_analyze.py
+++ b/tools/purify/purify_analyze.py
@@ -860,7 +860,7 @@ class PurifyAnalyze:
if fixes:
logging.warning("%d total errors unexpectedly fixed" % fixes)
# magic return code to turn the builder orange (via ReturnCodeCommand)
- return -88
+ return 88
return 0