1425bb815Sopenharmony_ci#!/bin/bash
2425bb815Sopenharmony_ci
3425bb815Sopenharmony_ci# Copyright JS Foundation and other contributors, http://js.foundation
4425bb815Sopenharmony_ci#
5425bb815Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
6425bb815Sopenharmony_ci# you may not use this file except in compliance with the License.
7425bb815Sopenharmony_ci# You may obtain a copy of the License at
8425bb815Sopenharmony_ci#
9425bb815Sopenharmony_ci#     http://www.apache.org/licenses/LICENSE-2.0
10425bb815Sopenharmony_ci#
11425bb815Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software
12425bb815Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS
13425bb815Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14425bb815Sopenharmony_ci# See the License for the specific language governing permissions and
15425bb815Sopenharmony_ci# limitations under the License.
16425bb815Sopenharmony_ci
17425bb815Sopenharmony_ciENGINE=$1
18425bb815Sopenharmony_ci
19425bb815Sopenharmony_cifunction run ()
20425bb815Sopenharmony_ci{
21425bb815Sopenharmony_ci    echo "Running test: $1.js"
22425bb815Sopenharmony_ci        ./tools/perf.sh 5 $ENGINE ./tests/benchmarks/$1.js
23425bb815Sopenharmony_ci        ./tools/rss-measure.sh $ENGINE ./tests/benchmarks/$1.js
24425bb815Sopenharmony_ci}
25425bb815Sopenharmony_ci
26425bb815Sopenharmony_ciecho "Running Sunspider:"
27425bb815Sopenharmony_ci#run jerry/sunspider/3d-morph // too fast
28425bb815Sopenharmony_cirun jerry/sunspider/bitops-3bit-bits-in-byte
29425bb815Sopenharmony_cirun jerry/sunspider/bitops-bits-in-byte
30425bb815Sopenharmony_cirun jerry/sunspider/bitops-bitwise-and
31425bb815Sopenharmony_cirun jerry/sunspider/controlflow-recursive
32425bb815Sopenharmony_cirun jerry/sunspider/math-cordic
33425bb815Sopenharmony_cirun jerry/sunspider/math-partial-sums
34425bb815Sopenharmony_cirun jerry/sunspider/math-spectral-norm
35425bb815Sopenharmony_ci
36425bb815Sopenharmony_ciecho "Running Jerry:"
37425bb815Sopenharmony_cirun jerry/cse
38425bb815Sopenharmony_cirun jerry/cse_loop
39425bb815Sopenharmony_cirun jerry/cse_ready_loop
40425bb815Sopenharmony_cirun jerry/empty_loop
41425bb815Sopenharmony_cirun jerry/function_loop
42425bb815Sopenharmony_cirun jerry/loop_arithmetics_10kk
43425bb815Sopenharmony_cirun jerry/loop_arithmetics_1kk
44425bb815Sopenharmony_ci
45425bb815Sopenharmony_ciecho "Running UBench:"
46425bb815Sopenharmony_cirun ubench/function-closure
47425bb815Sopenharmony_cirun ubench/function-empty
48425bb815Sopenharmony_cirun ubench/function-correct-args
49425bb815Sopenharmony_cirun ubench/function-excess-args
50425bb815Sopenharmony_cirun ubench/function-missing-args
51425bb815Sopenharmony_cirun ubench/function-sum
52425bb815Sopenharmony_cirun ubench/loop-empty-resolve
53425bb815Sopenharmony_cirun ubench/loop-empty
54425bb815Sopenharmony_cirun ubench/loop-sum
55425bb815Sopenharmony_ci
56425bb815Sopenharmony_ci
57