| Index: test/webkit/testcfg.py
|
| diff --git a/test/webkit/testcfg.py b/test/webkit/testcfg.py
|
| index e4e3f8fa8b94691ad847b47aef77b03c2de7197c..aa81964f5ef6995c5e1567de23bae411e544afdf 100644
|
| --- a/test/webkit/testcfg.py
|
| +++ b/test/webkit/testcfg.py
|
| @@ -109,7 +109,11 @@ class WebkitTestSuite(testsuite.TestSuite):
|
| string.startswith("tools/nacl-run.py") or
|
| string.find("BYPASSING ALL ACL CHECKS") > 0 or
|
| string.find("Native Client module will be loaded") > 0 or
|
| - string.find("NaClHostDescOpen:") > 0)
|
| + string.find("NaClHostDescOpen:") > 0 or
|
| + # FIXME(machenbach): The test driver shouldn't try to use slow
|
| + # asserts if they weren't compiled. This fails in optdebug=2.
|
| + string == "Warning: unknown flag --enable-slow-asserts." or
|
| + string == "Try --help for options")
|
|
|
| def IsFailureOutput(self, output, testpath):
|
| if super(WebkitTestSuite, self).IsFailureOutput(output, testpath):
|
|
|