2019-02-08 22:18:19 +00:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
load('../base.js');
|
|
|
|
load('tagged-template.js');
|
2019-05-10 20:49:04 +00:00
|
|
|
load('array-indexof-includes.js');
|
2019-05-14 21:28:18 +00:00
|
|
|
load('spread-call.js');
|
2019-06-10 17:35:34 +00:00
|
|
|
load('has-own-property.js');
|
2019-06-12 16:35:21 +00:00
|
|
|
load('array-map.js');
|
2019-06-13 17:57:39 +00:00
|
|
|
load('array-reduce.js');
|
2019-02-08 22:18:19 +00:00
|
|
|
|
|
|
|
function PrintResult(name, result) {
|
|
|
|
console.log(name);
|
|
|
|
console.log(name + '-Numbers(Score): ' + result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function PrintError(name, error) {
|
|
|
|
PrintResult(name, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
BenchmarkSuite.config.doWarmup = undefined;
|
|
|
|
BenchmarkSuite.config.doDeterministic = undefined;
|
|
|
|
|
|
|
|
BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
|
|
|
|
NotifyError: PrintError });
|