2013-02-16 15:36:41 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2014-05-09 21:16:55 +00:00
|
|
|
run() {
|
|
|
|
echo '==============================================='
|
|
|
|
echo "${@}"
|
|
|
|
echo '==============================================='
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2014-07-24 00:24:17 +00:00
|
|
|
if [ ${#} -gt 0 ]; then
|
|
|
|
run make ${@}
|
|
|
|
else
|
|
|
|
run make jdk-test
|
|
|
|
run make test
|
|
|
|
run make mode=debug test
|
|
|
|
run make process=interpret test
|
|
|
|
run make bootimage=true test
|
|
|
|
run make mode=debug bootimage=true test
|
|
|
|
run make openjdk=$JAVA_HOME test
|
|
|
|
run make tails=true continuations=true heapdump=true test
|
|
|
|
run make codegen-targets=all
|
2014-04-29 21:15:00 +00:00
|
|
|
fi
|