Chromium Code Reviews| Index: test/message/testcfg.py |
| diff --git a/test/message/testcfg.py b/test/message/testcfg.py |
| index 7c53041016c8023fa1c132298a44a5303185a75a..466227fd4363d253557cdfb54b6a45e76c5b4fa0 100644 |
| --- a/test/message/testcfg.py |
| +++ b/test/message/testcfg.py |
| @@ -94,7 +94,9 @@ class MessageTestSuite(testsuite.TestSuite): |
| string.find("Native Client module will be loaded") > 0 or |
| string.find("NaClHostDescOpen:") > 0) |
| - def IsFailureOutput(self, output, testpath): |
| + def IsFailureOutput(self, testcase): |
| + output = testcase.output |
| + testpath = testcase.testpath |
|
Michael Achenbach
2016/03/10 12:16:31
testcase.path
Dan Ehrenberg
2016/03/10 20:08:19
Thanks, fixed
|
| expected_path = os.path.join(self.root, testpath + ".out") |
| expected_lines = [] |
| # Can't use utils.ReadLinesFrom() here because it strips whitespace. |