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

Unified Diff: LayoutTests/fast/regex/script-tests/repeat-match-waldemar.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/regex/script-tests/repeat-match-waldemar.js
diff --git a/LayoutTests/fast/regex/script-tests/repeat-match-waldemar.js b/LayoutTests/fast/regex/script-tests/repeat-match-waldemar.js
deleted file mode 100644
index f76aa1e6c4b10adaf371cd6256f60b9d0cce13b5..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regex/script-tests/repeat-match-waldemar.js
+++ /dev/null
@@ -1,31 +0,0 @@
-description(
-"Some test cases identified by Waldemar Horwat in response to this bug: https://bugs.webkit.org/show_bug.cgi?id=48101"
-);
-
-shouldBe('/(?:a*?){2,}/.exec("aa")', '["aa"]');
-shouldBe('/(?:a*?){2,}/.exec("a")', '["a"]');
-shouldBe('/(?:a*?){2,}/.exec("")', '[""]');
-
-shouldBe('/(?:a*?)/.exec("aa")', '[""]');
-shouldBe('/(?:a*?)/.exec("a")', '[""]');
-shouldBe('/(?:a*?)/.exec("")', '[""]');
-
-shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("aa")', '[""]');
-shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("a")', '[""]');
-shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("")', '[""]');
-
-shouldBe('/(?:a*?){2}/.exec("aa")', '[""]');
-shouldBe('/(?:a*?){2}/.exec("a")', '[""]');
-shouldBe('/(?:a*?){2}/.exec("")', '[""]');
-
-shouldBe('/(?:a*?){2,3}/.exec("aa")', '["a"]');
-shouldBe('/(?:a*?){2,3}/.exec("a")', '["a"]');
-shouldBe('/(?:a*?){2,3}/.exec("")', '[""]');
-
-shouldBe('/(?:a*?)?/.exec("aa")', '["a"]');
-shouldBe('/(?:a*?)?/.exec("a")', '["a"]');
-shouldBe('/(?:a*?)?/.exec("")', '[""]');
-
-shouldBe('/(?:a*?)*/.exec("aa")', '["aa"]');
-shouldBe('/(?:a*?)*/.exec("a")', '["a"]');
-shouldBe('/(?:a*?)*/.exec("")', '[""]');
« no previous file with comments | « LayoutTests/fast/regex/script-tests/quantified-assertions.js ('k') | LayoutTests/fast/regex/script-tests/toString.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698