Index: test/message/testcfg.py |
diff --git a/test/message/testcfg.py b/test/message/testcfg.py |
index 7c53041016c8023fa1c132298a44a5303185a75a..577b476637d3d00388a8755d7e59379806455739 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.path |
expected_path = os.path.join(self.root, testpath + ".out") |
expected_lines = [] |
# Can't use utils.ReadLinesFrom() here because it strips whitespace. |