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'); 7 8load('assign.js'); 9load('values.js'); 10load('entries.js'); 11 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 }); 30