Chromium Code Reviews| Index: test/preparser/testcfg.py |
| diff --git a/test/preparser/testcfg.py b/test/preparser/testcfg.py |
| index ddd311c20162e4822a15d8d6d4e256139c2fbd08..bf32a3bb16ddf37932beec2d2bb7f953e995342a 100644 |
| --- a/test/preparser/testcfg.py |
| +++ b/test/preparser/testcfg.py |
| @@ -126,8 +126,8 @@ class PreparserTestSuite(testsuite.TestSuite): |
| with open(testcase.flags[0]) as f: |
| return f.read() |
| - def VariantFlags(self, testcase, default_flags): |
| - return [[]]; |
| + def VariantFlags(self, variant_filter): |
| + return lambda _: testsuite.DEFAULT_VARIANT |
|
Michael Achenbach
2015/07/27 12:37:45
Here, status file filtering is ignored as it doesn
|
| def GetSuite(name, root): |