Overview
Comment: | Updated to publish tests into an optional sub-directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3887ad80a528eff5ab1776a6d0f2456a |
User & Date: | rkeene on 2010-09-26 04:47:15 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:47 | Updated to require version argument to publish-tests script check-in: 7ce18d465b user: rkeene tags: trunk | |
04:47 | Updated to publish tests into an optional sub-directory check-in: 3887ad80a5 user: rkeene tags: trunk | |
04:47 | Updated to invert the meaning of "threaded" when building CVS HEAD (which is threaded by default) in test suite (does not affect behaviour of KitCreator commands) check-in: 6c627203b1 user: rkeene tags: trunk | |
Changes
Modified build/test/publish-tests from [93c8b06bf5] to [3569e23d32].
1 2 3 4 5 6 7 8 9 10 11 12 | #! /usr/bin/env tclsh package require Tcl 8.5 set WEBDIR "/web/rkeene/devel/kitcreator/kitbuild" if {![file isdir "kits"]} { puts stderr "Could not find kits/ directory, aborting." exit 1 } set noncriticaltests [list "05-locale"] | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /usr/bin/env tclsh package require Tcl 8.5 set WEBDIR "/web/rkeene/devel/kitcreator/kitbuild" if {[llength $argv] == 1} { # If a single argument is given, put results in that sub-directory set WEBDIR [file join $WEBDIR [lindex $argv 0]] } if {![file isdir "kits"]} { puts stderr "Could not find kits/ directory, aborting." exit 1 } set noncriticaltests [list "05-locale"] |
︙ | ︙ |