| Index: tools/testrunner/objects/output.py
|
| diff --git a/tools/testrunner/objects/output.py b/tools/testrunner/objects/output.py
|
| index 87b4c84e1996607599a6e83fec36efceb339dabc..6b5b0cd491dbabf5fc55efa8596c2d538657188f 100644
|
| --- a/tools/testrunner/objects/output.py
|
| +++ b/tools/testrunner/objects/output.py
|
| @@ -38,6 +38,12 @@ class Output(object):
|
| self.stdout = stdout
|
| self.stderr = stderr
|
|
|
| + def __ne__(self, other):
|
| + return (self.exit_code != other.exit_code or
|
| + self.timed_out != other.timed_out or
|
| + self.stdout != other.stdout or
|
| + self.stderr != other.stderr)
|
| +
|
| def HasCrashed(self):
|
| if utils.IsWindows():
|
| return 0x80000000 & self.exit_code and not (0x3FFFFF00 & self.exit_code)
|
|
|