- Timestamp:
- Jul 23, 2015, 11:53:03 AM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 99f8375
- Parents:
- 5d85ad3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/runtests
r5d85ad3 rdbec528 16 16 fi 17 17 18 if [ -n "${TEST_LOCK}" ]; then19 TEST_LOCK="$(realpath ${TEST_LOCK})"20 flock_cmd="flock -w ${TEST_LOCK_WAIT} ${TEST_LOCK}"21 fi22 23 18 BADVARS=0 24 for v in APACHE2 TEST_HOST TEST_IP TEST_PORT TEST_QUERY_DELAY TEST_GAP MSVA_PORT; do 19 for v in APACHE2 TEST_HOST TEST_IP TEST_PORT TEST_QUERY_DELAY TEST_GAP \ 20 MSVA_PORT TEST_LOCK; do 25 21 if [ ! -v "$v" ]; then 26 22 printf "You need to set the %s environment variable\n" "$v" >&2 … … 151 147 fi 152 148 153 if [ -z "${flock_cmd}" ]; then 154 echo "Warning: no lock file set" 155 sleep "$TEST_GAP" 156 fi 149 # configure locking for the Apache process 150 flock_cmd="flock -w ${TEST_LOCK_WAIT} $(realpath ${TEST_LOCK})" 151 157 152 t="$(realpath ${testid})" 158 153 export srcdir="$(realpath ${srcdir})"
Note: See TracChangeset
for help on using the changeset viewer.