blob: f25bee4572fcda236bb6d2778faadd3eb171a5c7 [file] [log] [blame]
Ben Murdoch014dc512016-03-22 12:00:34 +00001// Copyright 2014 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.
4
5
6load('../base.js');
Ben Murdoch3b9bc312016-06-02 14:46:10 +01007
Ben Murdoch014dc512016-03-22 12:00:34 +00008load('assign.js');
Ben Murdoch3b9bc312016-06-02 14:46:10 +01009load('values.js');
10load('entries.js');
Ben Murdoch014dc512016-03-22 12:00:34 +000011
12var success = true;
13
14function PrintResult(name, result) {
15 print(name + '-Object(Score): ' + result);
16}
17
18
19function PrintError(name, error) {
20 PrintResult(name, error);
21 success = false;
22}
23
24
25BenchmarkSuite.config.doWarmup = undefined;
26BenchmarkSuite.config.doDeterministic = undefined;
27
28BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
29 NotifyError: PrintError });