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

Unified Diff: LayoutTests/fast/js/script-tests/regexp-look-ahead-empty.js

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/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"]');
« no previous file with comments | « LayoutTests/fast/js/script-tests/regexp-look-ahead.js ('k') | LayoutTests/fast/js/script-tests/regexp-no-extensions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698