Reviewers: Christian Plesner Hansen, Description: * Remove unexpected passes from mozilla.status. * Fix lint issue.
Please review this at http://codereview.chromium.org/11270 SVN Base: http://v8.googlecode.com/svn/branches/experimental/regexp2000/ Affected files: M src/interpreter-re2k.cc M test/mozilla/mozilla.status Index: test/mozilla/mozilla.status =================================================================== --- test/mozilla/mozilla.status (revision 786) +++ test/mozilla/mozilla.status (working copy) @@ -246,14 +246,6 @@ js1_5/Regress/regress-247179: FAIL_OK -# Regexp too long for PCRE. -js1_5/Regress/regress-280769: FAIL_OK -js1_5/Regress/regress-280769-1: FAIL_OK -js1_5/Regress/regress-280769-2: FAIL_OK -js1_5/Regress/regress-280769-4: FAIL_OK -js1_5/Regress/regress-280769-5: FAIL_OK - - # We do not support static RegExp.multiline - should we?. js1_2/regexp/RegExp_multiline: FAIL_OK js1_2/regexp/RegExp_multiline_as_array: FAIL_OK @@ -489,7 +481,6 @@ # behavior and not the ECMA spec. ecma_3/RegExp/15.10.2-1: FAIL_OK ecma_3/RegExp/perlstress-001: FAIL_OK -ecma_3/RegExp/regress-334158: FAIL_OK # This test requires a failure if we try to compile a function with more Index: src/interpreter-re2k.cc =================================================================== --- src/interpreter-re2k.cc (revision 790) +++ src/interpreter-re2k.cc (working copy) @@ -67,7 +67,7 @@ BC_##name##_LENGTH, \ #name); #else -# define BYTECODE(name) case BC_##name: +# define BYTECODE(name) case BC_##name: // NOLINT #endif --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
