Commit 9094a41e authored by Santiago Aboy Solanes's avatar Santiago Aboy Solanes Committed by Commit Bot

[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/+/2039431Reviewed-by: 's avatarMythri Alle <mythria@chromium.org>
Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66234}
parent 37e36fb2
......@@ -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;
......
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