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

Unified Diff: test/mjsunit/cyrillic.js

Issue 385133: Fix bug 499 by splitting up long-running test to minimise the amount... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 1 month 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 | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/cyrillic.js
===================================================================
--- test/mjsunit/cyrillic.js (revision 3302)
+++ test/mjsunit/cyrillic.js (working copy)
@@ -174,15 +174,6 @@
}
-// Test all non-ASCII characters individually to ensure that our optimizations
-// didn't break anything.
-for (var i = 0x80; i <= 0xfffe; i++) {
- var c = String.fromCharCode(i);
- var c2 = String.fromCharCode(i + 1);
- var re = new RegExp("[" + c + "-" + c2 + "]", "i");
- assertTrue(re.test(c), 57);
-}
-
for (var add_non_ascii_character_to_subject = 0;
add_non_ascii_character_to_subject < 2;
add_non_ascii_character_to_subject++) {
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698