| Index: LayoutTests/fast/js/script-tests/regexp-look-ahead-empty.js
|
| diff --git a/LayoutTests/fast/js/script-tests/regexp-look-ahead-empty.js b/LayoutTests/fast/js/script-tests/regexp-look-ahead-empty.js
|
| deleted file mode 100644
|
| index b4618cd3dd9c32d7e8c29c9d34ecd6b150bba496..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/js/script-tests/regexp-look-ahead-empty.js
|
| +++ /dev/null
|
| @@ -1,13 +0,0 @@
|
| -description(
|
| -'Test for regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=42664">Yarr Interpreter is hanging in some cases of look-ahead regex patterns</a>. It also tests some other related expressions.'
|
| -);
|
| -
|
| -shouldBe('/(?:(?=x))+/.exec("x")', '[""]');
|
| -shouldBe('/(?:a?)*/.exec("a")', '["a"]');
|
| -shouldBe('/(a|ab)*/.exec("abab")', '["a","a"]');
|
| -shouldBe('/(ab)+/.exec("abab")', '["abab","ab"]');
|
| -// The following tests fail because of pcre interpreter bug(s).
|
| -shouldBe('/(|ab)*/.exec("ab")', '["ab","ab"]');
|
| -shouldBe('/(?:(|ab)*)/.exec("ab")', '["ab","ab"]');
|
| -shouldBe('/(?:(|ab)+)/.exec("ab")', '["ab","ab"]');
|
| -shouldBe('/(|ab)+/.exec("abab")', '["abab","ab"]');
|
|
|