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

Unified Diff: test/mjsunit/regress/regress-chromium-482998.js

Issue 1174603002: Revert of Optimize trivial regexp disjunctions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 | « test/cctest/test-heap.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-chromium-482998.js
diff --git a/test/mjsunit/regress/regress-chromium-482998.js b/test/mjsunit/regress/regress-chromium-482998.js
deleted file mode 100644
index 94ff5008e85688ee8cf70dc9dd010c4c41257b26..0000000000000000000000000000000000000000
--- a/test/mjsunit/regress/regress-chromium-482998.js
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2015 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Should not time out. Running time 0.5s vs. 120s before the change.
-function collapse() {
- var src = "(?:";
- for (var i = 128; i < 0x1000; i++) {
- src += "a" + String.fromCharCode(i) + "|";
- }
- src += "aa)";
- var collapsible = new RegExp(src);
- var subject = "zzzzzzz" + String.fromCharCode(3000);
- for (var i = 0; i < 1000; i++) {
- subject += "xxxxxxx";
- }
- for (var i = 0; i < 2000; i++) {
- assertFalse(collapsible.test(subject));
- }
-}
-
-collapse();
« no previous file with comments | « test/cctest/test-heap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698