Overview
Comment: | Added basic Incr Tcl test |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 36e900cf16bd354437633b0ef61392b2668512f0 |
User & Date: | rkeene on 2011-05-08 19:16:45 |
Other Links: | manifest | tags |
Context
2011-05-17
| ||
01:33 | Updated to pull user-specified (or default) kit.ico and kit.rc into Tk, if built and not include KitSH's own resource file when including Tk's since they conflict check-in: 4fa3b7d3ea user: rkeene tags: trunk | |
2011-05-08
| ||
19:16 | Added basic Incr Tcl test check-in: 36e900cf16 user: rkeene tags: trunk | |
2011-05-01
| ||
15:19 | KitCreator 0.5.4 check-in: e8a7740c04 user: rkeene tags: trunk, 0.5.4 | |
Changes
Added build/test/tests/16-itcl.tcl version [91f3c57960].
1 +#! /usr/bin/env tclsh 2 + 3 +if {[catch { 4 + set buildflags [split [lindex $argv 1] -] 5 + 6 + # Determine if Itcl was was requested 7 + ## Minimal builds don't come with Itcl 8 + set hasitcl 1 9 + if {[lsearch -exact $buildflags "min"] != -1} { 10 + set hasitcl 0 11 + } 12 + 13 + if {!$hasitcl} { 14 + exit 0 15 + } 16 + 17 + package require Itcl 18 + 19 + exit 0 20 +}]} { 21 + puts "Error in Itcl Test: $errorInfo" 22 + exit 1 23 +}