Overview
Comment: | Added a "bigbuild" option to testing |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
335b6cb191bfdfc9383087e1b099e74d |
User & Date: | rkeene on 2011-08-15 18:15:50 |
Other Links: | manifest | tags |
Context
2011-09-14
| ||
18:25 | Updated to pass "wget" errors from Tcl build up to stderr check-in: fd32e55ed8 user: rkeene tags: trunk | |
2011-08-15
| ||
18:15 | Added a "bigbuild" option to testing check-in: 335b6cb191 user: rkeene tags: trunk | |
2011-08-06
| ||
16:10 |
Updated to support a large test build suite if requested
Minor cleanup of test script check-in: 1ebadabb1d user: rkeene tags: trunk | |
Changes
Modified build/test/publish-tests from [8f47d1a196] to [0064c718f9].
︙ | |||
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | + + + - + + | set work [split $kitcreator_vers _] set kitcreator_fossil_vers [lindex $work 1] set kitcreator_readable_vers "Fossil trunk check-in ${kitcreator_fossil_vers}" set url "http://kitcreator.rkeene.org/fossil/tarball/kitcreator-${kitcreator_vers}.tar.gz?uuid=${kitcreator_fossil_vers}" } elseif {[string match "special_*" $kitcreator_vers]} { set kitcreator_readable_vers $kitcreator_vers } else { set kitcreator_readable_vers $kitcreator_vers set url "http://www.rkeene.org/devel/kitcreator-${kitcreator_vers}.tar.gz" } puts $fd "<html>" puts $fd " <head>" puts $fd " <title>KitCreator Build and Test Status</title>" puts $fd " </head>" puts $fd " <body>" puts $fd " <h1><a href=\"http://kitcreator.rkeene.org/\">KitCreator</a> <a href=\"../\">Build and Test Status</a></h1>" if {[info exists url]} { |
︙ |
Modified build/test/test from [b38b166c9c] to [1e502acc62].
︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + | Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & echo "$!" )" DISPLAY=:31 export DISPLAY if [ "${BIGBUILD}" = "1" ]; then |
︙ |