blob: ef06889f5cb53b069eb91376e882216df13d1055 [file] [log] [blame]
#!/bin/bash
parent=$(cd $(dirname $0); pwd)
template="${parent}/template-benchmarks-xxx.json"
tests="andebenchpro \
antutu2 \
antutu3 \
antutu5.7 \
benchmarkpi \
cf-bench \
gearses2eclair \
geekbench3 \
glbenchmark-2.5.1 \
javawhetstone \
jbench \
linpack \
linpackjava \
quadrantpro \
scimark \
sqlite \
vellamo3"
tc2_tests="andebenchpro \
antutu2 \
antutu3 \
antutu5.7 \
benchmarkpi \
cf-bench \
javawhetstone \
jbench \
linpack \
linpackjava \
quadrantpro \
scimark \
sqlite \
vellamo3"
for test_name in ${tests}; do
sed "s/%%TEST_NAME%%/${test_name}/" ${template} >${parent}/template-${test_name}.json
done