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: | 2a6d20552526b34deaf7ab464eb2e69079f3e013 |
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 driver check-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 300 for testscp in "${TESTDIR}"/tests/*.tcl; do 301 301 testscp_tag="$(basename "${testscp}" .tcl)" 302 302 testscppre="$(dirname "${testscp}")/${testscp_tag}.sh" 303 303 scplogfile="${outputname}-${testscp_tag}.log" 304 304 305 305 # If a command is required to start the kit, prepare to kill it 306 306 # in case of timeout. 307 + ## Temporarily disabled since currently it is causing 308 + ## more problems in the form of tests being killed 309 + ## prematurely than we are having issues with tests 310 + ## hanging 307 311 kitrunkillpid="" 308 - if [ -n "${kitruncmd}" ]; then 312 + if [ "1" = "0" -a -n "${kitruncmd}" ]; then 309 313 ( 310 314 sleep 120 311 315 killall "$(basename "${outputname}")" >/dev/null 2>/dev/null 312 316 ) >/dev/null 2>/dev/null & 313 317 kitrunkillpid="$!" 314 318 fi 315 319