test/script/basic/octane-payload.js

Mon, 03 Oct 2016 11:11:43 -0700

author
asaha
date
Mon, 03 Oct 2016 11:11:43 -0700
changeset 2002
31dad6c4e1be
parent 1034
5d41c7482d54
permissions
-rw-r--r--

Added tag jdk8u121-b03 for changeset 112c17eb13c7

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

mercurial