1// 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');
7load('map.js');
8load('set.js');
9load('weakmap.js');
10load('weakset.js');
11
12
13var success = true;
14
15function PrintResult(name, result) {
16  print(name + '-Collections(Score): ' + result);
17}
18
19
20function PrintError(name, error) {
21  PrintResult(name, error);
22  success = false;
23}
24
25
26BenchmarkSuite.config.doWarmup = undefined;
27BenchmarkSuite.config.doDeterministic = undefined;
28
29BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
30                           NotifyError: PrintError });
31