aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authordonghui.bai <donghui.bai@linaro.org>2017-04-19 14:08:37 +0800
committerdonghui.bai <donghui.bai@spreadtrum.com>2017-05-11 13:31:02 +0800
commit9ee536cead1db8cdbf69a810b09b3b001e292d16 (patch)
treed5524dacac39ad816c0afa86d08578308041eb7b /build.sh
parent5395d0b302dce51c83c3f480ca4082995f892c75 (diff)
downloadart-testing-9ee536cead1db8cdbf69a810b09b3b001e292d16.tar.gz
Add original benchmarks from 'ReversiGame' suite.
These files come from the 'ReversiGame' suite (https://github.com/luugiathuy/ReversiGame). The commit is known to fail; fix will arrive in next commit. Change-Id: Idccd6adac2598befd35d43b7896de27af18f22f3
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 496c7f3..6a9352c 100755
--- a/build.sh
+++ b/build.sh
@@ -129,7 +129,13 @@ set -f
# Find what Java files we need to compile.
if [[ -z $JAVA_BENCHMARK_FILES ]]; then
- JAVA_BENCHMARK_FILES="$(find $DIR_BENCHMARKS -type f -name '*'.java)"
+ JAVA_BENCHMARK_FILES="$(find $DIR_BENCHMARKS -type f -name '*'.java \
+! -name Agent.java \
+! -name Evaluation.java \
+! -name NegaScoutAgent.java \
+! -name Reversi.java \
+)"
+
fi
# Reenable wildcard expansion.