Commit ecbbc58e authored by Ben L. Titzer's avatar Ben L. Titzer Committed by Commit Bot

[wasm] Reduce run-time of GC stress test.

R=clemensh@chromium.org

Bug: 
Change-Id: I0fb6bdba7462acd1a6f86a9a378238dcb466a9e1
Reviewed-on: https://chromium-review.googlesource.com/571012Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
Commit-Queue: Ben Titzer <titzer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46682}
parent 08912d11
......@@ -30,8 +30,8 @@ function run(f) {
}
(function test() {
for (var i = 0; i < 100; i++) {
run(x => (x + 19));
for (var i = 0; i < 10; i++) {
run(x => (x + 19 + i));
run(x => (x - 18));
}
})();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment