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 41 42 43 44 45 46 47 48 49 50 51 52 53 |
if echo "${file}" | grep -- '-build.log$' >/dev/null; then
continue
fi
rm -f "${file}"
done
failed=""
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
kitcreator="./kitcreator"
args=""
runnable="1"
iszip="0"
statictk="0"
| > > > > > > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
if echo "${file}" | grep -- '-build.log$' >/dev/null; then
continue
fi
rm -f "${file}"
done
# Start Xvfb for X11-based tests
Xvfb -nolisten tcp :31 >/dev/null 2>/dev/null &
XVFB_PID="$!"
DISPLAY=:31
export DISPLAY
failed=""
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
kitcreator="./kitcreator"
args=""
runnable="1"
iszip="0"
statictk="0"
|
| ︙ | ︙ | |||
314 315 316 317 318 319 320 |
done
done
done
if [ -n "${failed}" ]; then
echo "Failed: ${failed}"
fi
| > > > | 320 321 322 323 324 325 326 327 328 329 |
done
done
done
if [ -n "${failed}" ]; then
echo "Failed: ${failed}"
fi
# Terminate Xvfb
kill -9 "${XVFB_PID}"
|