3 # Copyright (C) 2007 The Android Open Source Project
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Set up prog to be the path of this script, including following symlinks,
18 # and set up progdir to be the fully-qualified pathname of its directory.
20 while [ -h "${prog}" ]; do
21 newProg
=`/bin/ls -ld "${prog}"`
22 newProg
=`expr "${newProg}" : ".* -> \(.*\)$"`
23 if expr "x${newProg}" : 'x/' >/dev
/null
; then
26 progdir
=`dirname "${prog}"`
27 prog
="${progdir}/${newProg}"
31 progdir
=`dirname "${prog}"`
34 prog
="${progdir}"/`basename "${prog}"`
37 export JAVAC
="javac -target 1.5"
38 export RUN
="${progdir}/etc/push-and-run-test-jar"
43 expected
="expected.txt"
45 build_output
="build-output.txt"
54 if [ "x$1" = "x--host" ]; then
55 RUN
="${progdir}/etc/host-run-test-jar"
57 elif [ "x$1" = "x--reference" ]; then
58 RUN
="${progdir}/etc/reference-run-test-classes"
60 elif [ "x$1" = "x--jit" ]; then
61 run_args
="${run_args} --jit"
63 elif [ "x$1" = "x--fast" ]; then
64 run_args
="${run_args} --fast"
66 elif [ "x$1" = "x--portable" ]; then
67 run_args
="${run_args} --portable"
69 elif [ "x$1" = "x--debug" ]; then
70 run_args
="${run_args} --debug"
72 elif [ "x$1" = "x--gdb" ]; then
73 run_args
="${run_args} --gdb"
76 elif [ "x$1" = "x--zygote" ]; then
77 run_args
="${run_args} --zygote"
79 elif [ "x$1" = "x--no-verify" ]; then
80 run_args
="${run_args} --no-verify"
82 elif [ "x$1" = "x--no-optimize" ]; then
83 run_args
="${run_args} --no-optimize"
85 elif [ "x$1" = "x--no-precise" ]; then
86 run_args
="${run_args} --no-precise"
88 elif [ "x$1" = "x--valgrind" ]; then
89 run_args
="${run_args} --valgrind"
91 elif [ "x$1" = "x--dev" ]; then
92 run_args
="${run_args} --dev"
95 elif [ "x$1" = "x--update" ]; then
98 elif [ "x$1" = "x--help" ]; then
101 elif expr "x$1" : "x--" >/dev
/null
2>&1; then
102 echo "unknown option: $1" 1>&2
110 if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then
111 echo "--dev and --update are mutually exclusive" 1>&2
115 if [ "$usage" = "no" ]; then
116 if [ "x$1" = "x" -o "x$1" = "x-" ]; then
117 test_dir
=`basename "$oldwd"`
122 if [ '!' -d "$test_dir" ]; then
123 td2
=`echo ${test_dir}-*`
124 if [ '!' -d "$td2" ]; then
125 echo "${test_dir}: no such test directory" 1>&2
131 # Shift to get rid of the test name argument. The rest of the arguments
132 # will get passed to the test run.
136 if [ "$usage" = "yes" ]; then
137 prog
=`basename $prog`
140 echo " $prog --help Print this message."
141 echo " $prog [options] [test-name] Run test normally."
142 echo " $prog --dev [options] [test-name] Development mode" \
144 echo " $prog --update [options] [test-name] Update mode" \
145 "(replaces expected.txt)."
146 echo ' Omitting the test name or specifying "-" will use the' \
148 echo " Runtime Options:"
149 echo " --fast Use the fast interpreter (the default)."
150 echo " --jit Use the jit."
151 echo " --portable Use the portable interpreter."
152 echo " --debug Wait for a debugger to attach."
153 #echo " --gdb Run under gdb; incompatible with some tests."
154 echo " --no-verify Turn off verification (on by default)."
155 echo " --no-optimize Turn off optimization (on by default)."
156 echo " --no-precise Turn off precise GC (on by default)."
157 echo " --zygote Spawn the process from the Zygote." \
159 echo " other runtime options are ignored."
160 echo " --host Use the host-mode virtual machine."
161 echo " --valgrind Use valgrind when running locally."
162 echo " --reference Use a host-local reference virtual machine."
170 td_info
="${test_dir}/${info}"
171 td_expected
="${test_dir}/${expected}"
173 tmp_dir
="/tmp/test-$$"
175 if [ '!' '(' -r "$td_info" -a -r "$td_expected" ')' ]; then
176 echo "${test_dir}: missing files" 1>&2
180 # copy the test to a temp dir and run it
182 echo "${test_dir}: running..." 1>&2
185 cp -Rp "$test_dir" "$tmp_dir"
188 if [ '!' -r "$build" ]; then
189 cp "${progdir}/etc/default-build" build
192 if [ '!' -r "$run" ]; then
193 cp "${progdir}/etc/default-run" run
200 if [ "$dev_mode" = "yes" ]; then
202 echo "build exit status: $?" 1>&2
203 "./${run}" $run_args "$@" 2>&1
204 echo "run exit status: $?" 1>&2
206 elif [ "$update_mode" = "yes" ]; then
207 "./${build}" >"$build_output" 2>&1
209 if [ "$build_exit" = '0' ]; then
210 "./${run}" $run_args "$@" >"$output" 2>&1
211 sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}"
214 cat "$build_output" 1>&2
215 echo "build exit status: $build_exit" 1>&2
218 "./${build}" >"$build_output" 2>&1
220 if [ "$build_exit" = '0' ]; then
221 "./${run}" $run_args "$@" >"$output" 2>&1
223 cp "$build_output" "$output"
224 echo "build exit status: $build_exit" >>"$output"
226 diff --strip-trailing-cr -q "$expected" "$output" >/dev
/null
227 if [ "$?" = "0" ]; then
230 echo "${test_dir}: succeeded!" 1>&2
234 if [ "$good" = "yes" ]; then
241 if [ "$update_mode" '!=' "yes" ]; then
242 echo "${test_dir}: FAILED!"
244 echo '#################### info'
245 cat "${td_info}" |
sed 's/^/# /g'
246 echo '#################### diffs'
247 diff --strip-trailing-cr -u "$expected" "$output"
248 echo '####################'
251 echo "files left in ${tmp_dir}"