diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/purify/common.py | 2 | ||||
-rw-r--r-- | tools/purify/purify_analyze.py | 2 |
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 |