blob: a8e31a87155e9d9302a7831fe582aae5dc4e3139 [file] [log] [blame]
Andrew Top63c7ad42019-11-25 16:10:13 -08001// Copyright 2018 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4load('../base.js');
5load('tagged-template.js');
6load('array-indexof-includes.js');
7load('spread-call.js');
8load('has-own-property.js');
9load('array-map.js');
10load('array-reduce.js');
11
12function PrintResult(name, result) {
13 console.log(name);
14 console.log(name + '-Numbers(Score): ' + result);
15}
16
17function PrintError(name, error) {
18 PrintResult(name, error);
19}
20
21BenchmarkSuite.config.doWarmup = undefined;
22BenchmarkSuite.config.doDeterministic = undefined;
23
24BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
25 NotifyError: PrintError });