Differences From Artifact [648b46f86c]:
- Executable file build/test/test — part of check-in [266a96d1d3] at 2010-09-26 04:48:35 on branch trunk — Updated to produce Tclkits that lack Mk4 (user: rkeene, size: 8039) [annotate] [blame] [check-ins using]
To Artifact [472fc137a9]:
- Executable file
build/test/test
— part of check-in
[eaf3feab27]
at
2010-09-26 04:48:55
on branch trunk
— Added support for starting Xvfb before beginning tests (to test Tk)
Added Tk test (user: rkeene, size: 8202) [annotate] [blame] [check-ins using]
40 40 if echo "${file}" | grep -- '-build.log$' >/dev/null; then 41 41 continue 42 42 fi 43 43 44 44 rm -f "${file}" 45 45 done 46 46 47 +# Start Xvfb for X11-based tests 48 +Xvfb -nolisten tcp :31 >/dev/null 2>/dev/null & 49 +XVFB_PID="$!" 50 +DISPLAY=:31 51 +export DISPLAY 52 + 47 53 failed="" 48 54 for kit in normal normal-zip normal-threaded normal-threaded-zip normal-statictk normal-notk normal-threaded-notk normal-threaded-zip-notk normal-nomk4 min min-static win32-i586 win32-i586-zip win32-i586-threaded win32-i586-threaded-zip win32-i586-notk win32-i586-threaded-notk win32-i586-nomk4 linux-arm-min; do 49 55 kitcreator="./kitcreator" 50 56 args="" 51 57 runnable="1" 52 58 iszip="0" 53 59 statictk="0" ................................................................................ 314 320 done 315 321 done 316 322 done 317 323 318 324 if [ -n "${failed}" ]; then 319 325 echo "Failed: ${failed}" 320 326 fi 327 + 328 +# Terminate Xvfb 329 +kill -9 "${XVFB_PID}"