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
Esse commit está contido em:
nsylvain@chromium.org
2009-06-12 14:56:41 +00:00
commit 75846d58a2
2 arquivos alterados com 2 adições e 2 exclusões
+1 -1
Ver Arquivo
@@ -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
+1 -1
Ver Arquivo
@@ -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