Differences From Artifact [50f53a7092]:
- Executable file
build/test/do-nightly-tests-and-publish
— part of check-in
[d9e99beea7]
at
2010-09-26 04:49:55
on branch trunk
— Added guard to only run one nightly test at atime
Added new interp test (user: rkeene, size: 1058) [annotate] [blame] [check-ins using]
To Artifact [8a8ae4ef30]:
- Executable file build/test/do-nightly-tests-and-publish — part of check-in [f6a36c7a5c] at 2010-09-26 17:27:26 on branch trunk — Updated nightly test script to check for correct files (user: rkeene, size: 1058) [annotate] [blame] [check-ins using]
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 kits -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
|
| |
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
|