Revert of [Test] Do a set number of runs to trigger optimisation for SuperSpread. (patchset #1 id:1 of https://codereview.chromium.org/2669523002/ )

Reason for revert:
Causes test timeouts.

Original issue's description:
> [Test] Do a set number of runs to trigger optimisation for SuperSpread.
>
> BUG=v8:5895
>
> Review-Url: https://codereview.chromium.org/2669523002
> Cr-Commit-Position: refs/heads/master@{#42811}
> Committed: d4c22c3084

TBR=bmeurer@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:5895

Review-Url: https://codereview.chromium.org/2669553002
Cr-Commit-Position: refs/heads/master@{#42812}
This commit is contained in:
petermarshall 2017-01-31 04:52:29 -08:00 committed by Commit bot
parent d4c22c3084
commit bfc8dc12e9

View File

@ -6,15 +6,15 @@
// Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/>
new BenchmarkSuite('SuperSpread-ES5', [1000], [
new Benchmark('ES5', true, true, 150000, ES5),
new Benchmark('ES5', false, false, 0, ES5),
]);
new BenchmarkSuite('SuperSpread-Babel', [1000], [
new Benchmark('Babel', true, true, 150000, Babel),
new Benchmark('Babel', false, false, 0, Babel),
]);
new BenchmarkSuite('SuperSpread-ES6', [1000], [
new Benchmark('ES6', true, true, 150000, ES6),
new Benchmark('ES6', false, false, 0, ES6),
]);
// ----------------------------------------------------------------------------