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

Unified Diff: test/mjsunit/string-indexof-1.js

Issue 1331433002: Revert of Speedup stringsearch for two byte strings (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « src/string-search.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/string-indexof-1.js
diff --git a/test/mjsunit/string-indexof-1.js b/test/mjsunit/string-indexof-1.js
index 366437a1a0a55cd5c8fa75439cbd8aa32faf8750..db3623f7c029cd4e55782fff38bd7cbed4231511 100644
--- a/test/mjsunit/string-indexof-1.js
+++ b/test/mjsunit/string-indexof-1.js
@@ -77,15 +77,6 @@
//single char pattern
assertEquals(4, twoByteString.indexOf("\u0395"));
-// test string with alignment traps
-var alignmentString = "\u1122\u2211\u2222\uFF00\u00FF\u00FF";
-assertEquals(2, alignmentString.indexOf("\u2222"));
-assertEquals(4, alignmentString.indexOf("\u00FF\u00FF"));
-
-var longAlignmentString = "\uFF00" + "\u00FF".repeat(10);
-assertEquals(1,
- longAlignmentString.indexOf("\u00FF".repeat(10)));
-
// Test complex string indexOf algorithms. Only trigger for long strings.
// Long string that isn't a simple repeat of a shorter string.
« no previous file with comments | « src/string-search.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698