2017-09-01 11:19:17 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute("../base.js");
|
2017-09-01 11:19:17 +00:00
|
|
|
|
2018-08-17 12:51:58 +00:00
|
|
|
const iterations = 100;
|
|
|
|
let code;
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute("comments.js");
|
|
|
|
d8.file.execute("strings.js");
|
|
|
|
d8.file.execute("arrowfunctions.js")
|
2017-09-01 11:19:17 +00:00
|
|
|
|
|
|
|
var success = true;
|
|
|
|
|
|
|
|
function PrintResult(name, result) {
|
2018-08-17 12:51:58 +00:00
|
|
|
print(name + "-Parsing(Score): " + result);
|
2017-09-01 11:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function PrintError(name, error) {
|
|
|
|
PrintResult(name, error);
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BenchmarkSuite.config.doWarmup = undefined;
|
|
|
|
BenchmarkSuite.config.doDeterministic = undefined;
|
|
|
|
|
|
|
|
BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
|
|
|
|
NotifyError: PrintError });
|