summaryrefslogtreecommitdiff
path: root/deps/v8/test/mozilla/testcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mozilla/testcfg.py')
-rw-r--r--deps/v8/test/mozilla/testcfg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/test/mozilla/testcfg.py b/deps/v8/test/mozilla/testcfg.py
index 5739391102..0eb32c87bd 100644
--- a/deps/v8/test/mozilla/testcfg.py
+++ b/deps/v8/test/mozilla/testcfg.py
@@ -107,10 +107,10 @@ class MozillaTestSuite(testsuite.TestSuite):
def IsNegativeTest(self, testcase):
return testcase.path.endswith("-n")
- def IsFailureOutput(self, output, testpath):
- if output.exit_code != 0:
+ def IsFailureOutput(self, testcase):
+ if testcase.output.exit_code != 0:
return True
- return "FAILED!" in output.stdout
+ return "FAILED!" in testcase.output.stdout
def DownloadData(self):
print "Mozilla download is deprecated. It's part of DEPS."