Differences From Artifact [08a58cef96]:
- File build/test/tests/02-nameofexe.tcl — part of check-in [7c572fd6a8] at 2010-09-26 04:49:40 on branch trunk — Updated to support running Win32 tests under WINE (user: rkeene, size: 304) [annotate] [blame] [check-ins using]
To Artifact [cc4d6e243b]:
- File build/test/tests/02-nameofexe.tcl — part of check-in [35e596ec3e] at 2010-10-03 21:03:17 on branch trunk — Added KitDLL to test suite (user: rkeene, size: 500) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + + + + + + |
#! /usr/bin/env tclsh
set outputname [lindex $argv 0]
set buildflags [split [lindex $argv 1] -]
# If we built a KitDLL, the executable name will be "./tclsh"
if {[lsearch -exact $buildflags "kitdll"] != -1} {
set outputname "${outputname}-tclsh"
}
if {[info nameofexecutable] == $outputname} {
exit 0
}
# Under Wine, the drive letter is added
if {[info nameofexecutable] == "Z:$outputname"} {
|
| ︙ |