Overview
| Comment: | Updated nightly test script to check for correct files |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f6a36c7a5c381d914747a66d2a34735e |
| User & Date: | rkeene on 2010-09-26 17:27:26 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 19:26 | Updated logo check-in: 5074d303a3 user: rkeene tags: trunk | |
| 17:27 | Updated nightly test script to check for correct files check-in: f6a36c7a5c user: rkeene tags: trunk | |
| 07:06 | Added logo check-in: d005e7b118 user: rkeene tags: trunk | |
Changes
Modified build/test/do-nightly-tests-and-publish from [50f53a7092] to [8a8ae4ef30].
| ︙ | ︙ | |||
18 19 20 21 22 23 24 |
if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then
# Don't re-run the tests if nothing has changed
exit 0
fi
cd build/test || exit 1
| | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then
# Don't re-run the tests if nothing has changed
exit 0
fi
cd build/test || exit 1
if [ ! -x test -o ! -x publish-tests ]; then
echo 'Missing scripts, aborting.' >&2
exit 1
fi
# Only run one at a time
if [ -f '__AUTO_TESTS_RUNNING__' ]; then
|
| ︙ | ︙ |