Overview
| Comment: | Disabled automated killing of tests | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 2a6d20552526b34deaf7ab464eb2e690 | 
| User & Date: | rkeene on 2010-09-29 15:39:34 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-29 | ||
| 23:15 | Created GNU autoconf script for KitDLL Made KitDLL build a shared object Added test drivercheck-in: b11b735302 user: rkeene tags: trunk | |
| 15:39 | Disabled automated killing of tests check-in: 2a6d205525 user: rkeene tags: trunk | |
| 2010-09-28 | ||
| 22:13 | Renamed temporary zip files so they are more obviously deletable check-in: b31abfda22 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [0bd3a8c3a4] to [41f958cc6e].
| ︙ | ︙ | |||
| 300 301 302 303 304 305 306 307 | 
		for testscp in "${TESTDIR}"/tests/*.tcl; do
			testscp_tag="$(basename "${testscp}" .tcl)"
			testscppre="$(dirname "${testscp}")/${testscp_tag}.sh"
			scplogfile="${outputname}-${testscp_tag}.log"
			# If a command is required to start the kit, prepare to kill it
			# in case of timeout.
			kitrunkillpid=""
 | > > > > | | 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | 
		for testscp in "${TESTDIR}"/tests/*.tcl; do
			testscp_tag="$(basename "${testscp}" .tcl)"
			testscppre="$(dirname "${testscp}")/${testscp_tag}.sh"
			scplogfile="${outputname}-${testscp_tag}.log"
			# If a command is required to start the kit, prepare to kill it
			# in case of timeout.
			## Temporarily disabled since currently it is causing
			## more problems in the form of tests being killed
			## prematurely than we are having issues with tests
			## hanging
			kitrunkillpid=""
			if [ "1" = "0" -a -n "${kitruncmd}" ]; then
				(
					sleep 120
					killall "$(basename "${outputname}")" >/dev/null 2>/dev/null
				) >/dev/null 2>/dev/null &
				kitrunkillpid="$!"
			fi
 | 
| ︙ | ︙ |