[cleanup][test] Fix typo in js-perf-test/Scope/with.js

We were calling setup for both the setup and the run.

Bug: v8:10155
Change-Id: Id60df16ad8c98f443dc1b1a9a2155000999ab815
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2039431
Reviewed-by: Mythri Alle <mythria@chromium.org>
Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66234}
This commit is contained in:
Santiago Aboy Solanes 2020-02-05 18:13:30 +00:00 committed by Commit Bot
parent 37e36fb204
commit 9094a41e23

View File

@ -2,18 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
new BenchmarkSuite( 'With', [1000], [
new Benchmark('AccessOnSameLevel', false, false, 0,
AccessOnSameLevel, AccessOnSameLevelSetup,
AccessOnSameLevelTearDown),
new Benchmark('SetOnSameLevel', false, false, 0,
SetOnSameLevel, SetOnSameLevelSetup,
SetOnSameLevelTearDown),
new Benchmark('AccessOverPrototypeChain', false, false, 0,
AccessOverPrototypeChainSetup, AccessOverPrototypeChainSetup,
AccessOverPrototypeChainTearDown),
new Benchmark('CompetingScope', false, false, 0,
CompetingScope, CompetingScopeSetup, CompetingScopeTearDown)
new BenchmarkSuite('With', [1000], [
new Benchmark(
'AccessOnSameLevel', false, false, 0, AccessOnSameLevel,
AccessOnSameLevelSetup, AccessOnSameLevelTearDown),
new Benchmark(
'SetOnSameLevel', false, false, 0, SetOnSameLevel, SetOnSameLevelSetup,
SetOnSameLevelTearDown),
new Benchmark(
'AccessOverPrototypeChain', false, false, 0, AccessOverPrototypeChain,
AccessOverPrototypeChainSetup, AccessOverPrototypeChainTearDown),
new Benchmark(
'CompetingScope', false, false, 0, CompetingScope, CompetingScopeSetup,
CompetingScopeTearDown)
]);
var objectUnderTest;