attila@963: /* attila@963: * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. attila@963: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. attila@963: * attila@963: * This code is free software; you can redistribute it and/or modify it attila@963: * under the terms of the GNU General Public License version 2 only, as attila@963: * published by the Free Software Foundation. attila@963: * attila@963: * This code is distributed in the hope that it will be useful, but WITHOUT attila@963: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or attila@963: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License attila@963: * version 2 for more details (a copy is included in the LICENSE file that attila@963: * accompanied this code). attila@963: * attila@963: * You should have received a copy of the GNU General Public License version attila@963: * 2 along with this work; if not, write to the Free Software Foundation, attila@963: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. attila@963: * attila@963: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA attila@963: * or visit www.oracle.com if you need additional information or have any attila@963: * questions. attila@963: */ attila@963: attila@963: /** attila@963: * @subtest attila@963: */ attila@963: attila@963: function initZlib() { attila@963: zlib = new BenchmarkSuite('zlib', [152815148], [ attila@963: new Benchmark('zlib', false, true, 10, attila@963: runZlib, undefined, tearDownZlib, null, 3)]); attila@963: } attila@963: attila@963: var tests = [ attila@963: {name:"box2d", files:["box2d.js"], suite:"Box2DBenchmark"}, attila@963: {name:"code-load", files:["code-load.js"], suite:"CodeLoad"}, attila@963: {name:"crypto", files:["crypto.js"], suite:"Crypto"}, attila@963: {name:"deltablue", files:["deltablue.js"], suite:"DeltaBlue"}, attila@963: {name:"earley-boyer", files:["earley-boyer.js"], suite:"EarleyBoyer"}, attila@963: {name:"gbemu", files:["gbemu-part1.js", "gbemu-part2.js"], suite:"GameboyBenchmark"}, attila@963: {name:"mandreel", files:["mandreel.js"], suite:"MandreelBenchmark"}, attila@963: {name:"navier-stokes", files:["navier-stokes.js"], suite:"NavierStokes"}, hannesw@1034: {name:"pdfjs", files:["pdfjs.js"], suite:"PdfJS", cleanUpIteration: function() { canvas_logs = []; }}, attila@963: {name:"raytrace", files:["raytrace.js"], suite:"RayTrace"}, attila@963: {name:"regexp", files:["regexp.js"], suite:"RegExpSuite"}, attila@963: {name:"richards", files:["richards.js"], suite:"Richards"}, attila@963: {name:"splay", files:["splay.js"], suite:"Splay"}, attila@963: {name:"typescript", files:["typescript.js", "typescript-input.js", "typescript-compiler.js"], suite:"typescript"}, attila@963: //zlib currently disabled - requires read attila@963: {name:"zlib", files:["zlib.js", "zlib-data.js"], suite:"zlib", before:initZlib} attila@963: ]; attila@963: attila@963: var dir = (typeof(__DIR__) == 'undefined') ? "test/script/basic/" : __DIR__; attila@963: attila@963: // TODO: why is this path hard coded when it's defined in project properties? attila@963: var path = dir + "../external/octane/"; attila@963: var base = path + "base.js"; attila@963: