- Timestamp:
- Jul 12, 2015, 2:16:10 PM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- dfd5837
- Parents:
- ee687ab
- git-author:
- Thomas Klute <thomas2.klute@…> (07/12/15 14:15:28)
- git-committer:
- Thomas Klute <thomas2.klute@…> (07/12/15 14:16:10)
- Location:
- test
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
ree687ab r50eab8e 84 84 TestMakefile 85 85 86 # Maximum wait time in seconds for flock to aquire instance lock files 87 lock_wait = 30 88 86 89 AM_TESTS_ENVIRONMENT = export APACHE2=$(APACHE2); \ 87 90 export AP_LIBEXECDIR=$(AP_LIBEXECDIR); \ 91 export TEST_LOCK_WAIT=$(lock_wait); \ 88 92 export TEST_HOST="$(TEST_HOST)"; \ 89 93 export TEST_IP="$(TEST_IP)"; \ -
test/TestMakefile
ree687ab r50eab8e 20 20 export TEST_MSVA_MAX_WAIT ?= 10 21 21 export TEST_QUERY_DELAY ?= 30 22 export TEST_LOCK_WAIT ?= 30 22 23 23 24 TEST_LOCK := ./test.lock -
test/proxy_backend.bash
ree687ab r50eab8e 15 15 : ${srcdir:="."} 16 16 : ${APACHE2:="apache2"} 17 : ${TEST_LOCK_WAIT:="30"} 17 18 18 19 function backend_apache … … 24 25 25 26 if [ -n "${lockfile}" ]; then 26 flock_cmd="flock -w 10${lockfile}"27 flock_cmd="flock -w ${TEST_LOCK_WAIT} ${lockfile}" 27 28 fi 28 29 -
test/runtests
ree687ab r50eab8e 11 11 if [ -n "${TEST_LOCK}" ]; then 12 12 TEST_LOCK="$(realpath ${TEST_LOCK})" 13 flock_cmd="flock -w 10${TEST_LOCK}"13 flock_cmd="flock -w ${TEST_LOCK_WAIT} ${TEST_LOCK}" 14 14 fi 15 15
Note: See TracChangeset
for help on using the changeset viewer.