Differences From Artifact [93c8b06bf5]:
- Executable file build/test/publish-tests — part of check-in [6c627203b1] at 2010-09-26 04:47:10 on branch trunk — 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) (user: rkeene, size: 6224) [annotate] [blame] [check-ins using]
To Artifact [3569e23d32]:
- Executable file build/test/publish-tests — part of check-in [3887ad80a5] at 2010-09-26 04:47:15 on branch trunk — Updated to publish tests into an optional sub-directory (user: rkeene, size: 6372) [annotate] [blame] [check-ins using]
1 1 #! /usr/bin/env tclsh 2 2 3 3 package require Tcl 8.5 4 4 5 5 set WEBDIR "/web/rkeene/devel/kitcreator/kitbuild" 6 +if {[llength $argv] == 1} { 7 + # If a single argument is given, put results in that sub-directory 8 + set WEBDIR [file join $WEBDIR [lindex $argv 0]] 9 +} 10 + 6 11 if {![file isdir "kits"]} { 7 12 puts stderr "Could not find kits/ directory, aborting." 8 13 9 14 exit 1 10 15 } 11 16 12 17 set noncriticaltests [list "05-locale"]