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

Unified Diff: test/mjsunit/regress/regress-crbug-635798.js

Issue 2288813003: [test] Speed-up regression test for growing stores. (Closed)
Patch Set: Created 4 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-635798.js
diff --git a/test/mjsunit/regress/regress-crbug-635798.js b/test/mjsunit/regress/regress-crbug-635798.js
index 5456682ddc74a41137feae0bfce48136b664ec56..0a89aa19f7725b8d99581da210e7ef3c2dee73fe 100644
--- a/test/mjsunit/regress/regress-crbug-635798.js
+++ b/test/mjsunit/regress/regress-crbug-635798.js
@@ -8,7 +8,7 @@ function foo() {
var x = [];
var y = [];
x.__proto__ = y;
- for (var i = 0; i < 200000; ++i) {
+ for (var i = 0; i < 10000; ++i) {
Michael Achenbach 2016/08/30 06:55:18 Would that still reproduce the original bug? I.e.
y[i] = 1;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698