2013-02-16 15:36:41 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2014-07-13 01:06:41 +00:00
|
|
|
root_dir=$(pwd)
|
|
|
|
|
2014-05-09 21:16:55 +00:00
|
|
|
run() {
|
|
|
|
echo '==============================================='
|
2014-07-13 01:06:41 +00:00
|
|
|
if [ ! $(pwd) = ${root_dir} ]; then
|
|
|
|
printf "cd $(pwd); "
|
|
|
|
fi
|
2014-05-09 21:16:55 +00:00
|
|
|
echo "${@}"
|
|
|
|
echo '==============================================='
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2014-07-13 01:06:41 +00:00
|
|
|
run_cmake() {
|
|
|
|
mkdir -p cmake-build
|
|
|
|
rm -rf cmake-build/*
|
|
|
|
cd cmake-build
|
|
|
|
run cmake ${@} ..
|
|
|
|
run make -j4 check
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
2014-08-15 21:29:53 +00:00
|
|
|
flags="${@}"
|
|
|
|
|
|
|
|
run_if_not_covered() {
|
|
|
|
local arg=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
for f in ${flags}; do
|
|
|
|
local key=$(echo $f | awk -F '=' '{print $1}')
|
|
|
|
if [ ${key} = ${arg} ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
run "${@}"
|
|
|
|
}
|
|
|
|
|
2014-07-30 00:57:02 +00:00
|
|
|
run_cmake -DCMAKE_BUILD_TYPE=Debug
|
2014-07-13 01:06:41 +00:00
|
|
|
|
2014-07-30 00:57:02 +00:00
|
|
|
run make jdk-test
|
2014-08-15 21:29:53 +00:00
|
|
|
run make ${flags} test
|
|
|
|
run make ${flags} mode=debug test
|
|
|
|
run make ${flags} process=interpret test
|
|
|
|
run make ${flags} bootimage=true test
|
|
|
|
run make ${flags} mode=debug bootimage=true test
|
|
|
|
|
|
|
|
run_if_not_covered openjdk make ${flags} openjdk=$JAVA_HOME test
|
|
|
|
|
|
|
|
run make ${flags} tails=true continuations=true heapdump=true test
|
|
|
|
run make ${flags} codegen-targets=all
|