Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: LayoutTests/fast/js/regexp-look-ahead-empty-expected.txt

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove unused script-tests as well Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
-
« no previous file with comments | « LayoutTests/fast/js/regexp-look-ahead-empty.html ('k') | LayoutTests/fast/js/regexp-look-ahead-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698