aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorArtem Serov <artem.serov@linaro.org>2016-01-27 12:51:24 +0000
committerAlexandre Rames <alexandre.rames@linaro.org>2016-02-01 15:57:08 +0000
commitc0c45bd820179eb66143c9c1aa308395e6a2ea45 (patch)
treed35e60ea0a85fa4e7584bb88daecb2673b4c462a /build.sh
parent21220af23636b56654cade2f155827b690ec870c (diff)
downloadart-testing-c0c45bd820179eb66143c9c1aa308395e6a2ea45.tar.gz
Add original benchmarks from 'Caffeinemark' suite.
These files come from the 'Caffeinemark' suite (https://community.cablelabs.com/svn/OCAPRI/trunk/ri/RI_Stack/apps/vm_perf_test/src/com/tvworks/plateval/caffeinemark/). The commit is known to fail; fix will arrive in next commit. Change-Id: Ib55ac115a2b66f5e41e029ae93309ed3f22c9898
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 8550679..91b7a9b 100755
--- a/build.sh
+++ b/build.sh
@@ -109,7 +109,14 @@ shift $((OPTIND - 1))
# Disable wildcard expansion.
set -f
# Find what Java files we need to compile.
-JAVA_BENCHMARK_FILES="$(find $DIR_BENCHMARKS -type f -name '*'.java)"
+JAVA_BENCHMARK_FILES="$(find $DIR_BENCHMARKS -type f -name '*'.java \
+! -name FloatAtom.java \
+! -name LogicAtom.java \
+! -name LoopAtom.java \
+! -name MethodAtom.java \
+! -name SieveAtom.java \
+! -name StringAtom.java \
+)"
# Reenable wildcard expansion.
set +f