| Index: LayoutTests/fast/js/regexp-look-ahead-empty-expected.txt
|
| diff --git a/LayoutTests/fast/js/regexp-look-ahead-empty-expected.txt b/LayoutTests/fast/js/regexp-look-ahead-empty-expected.txt
|
| deleted file mode 100644
|
| index 812cbde87563d8ef957a96db7a0270754871debd..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/js/regexp-look-ahead-empty-expected.txt
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -Test for regression against Yarr Interpreter is hanging in some cases of look-ahead regex patterns. It also tests some other related expressions.
|
| -
|
| -On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
| -
|
| -
|
| -PASS /(?:(?=x))+/.exec("x") is [""]
|
| -PASS /(?:a?)*/.exec("a") is ["a"]
|
| -PASS /(a|ab)*/.exec("abab") is ["a","a"]
|
| -PASS /(ab)+/.exec("abab") is ["abab","ab"]
|
| -PASS /(|ab)*/.exec("ab") is ["ab","ab"]
|
| -PASS /(?:(|ab)*)/.exec("ab") is ["ab","ab"]
|
| -PASS /(?:(|ab)+)/.exec("ab") is ["ab","ab"]
|
| -PASS /(|ab)+/.exec("abab") is ["abab","ab"]
|
| -PASS successfullyParsed is true
|
| -
|
| -TEST COMPLETE
|
| -
|
|
|