tcltest: do a better job of cleanup up after tests
[jimtcl.git] / initjimsh.tcl
blobf929a2767c23ddb9b4008b99880e587b89947ae0
1 # This pseudo-package is loaded from jimsh to add additional
2 # paths to $auto_path and to source ~/.jimrc
4 proc _jimsh_init {} {
5 rename _jimsh_init {}
6 global jim::exe jim::argv0 tcl_interactive auto_path tcl_platform
8 # Stash the result of [info nameofexecutable] now, before a possible [cd]
9 if {[exists jim::argv0]} {
10 if {[string match "*/*" $jim::argv0]} {
11 set jim::exe [file join [pwd] $jim::argv0]
12 } else {
13 foreach path [split [env PATH ""] $tcl_platform(pathSeparator)] {
14 set exec [file join [pwd] [string map {\\ /} $path] $jim::argv0]
15 if {[file executable $exec]} {
16 set jim::exe $exec
17 break
23 # Add to the standard auto_path
24 lappend p {*}[split [env JIMLIB {}] $tcl_platform(pathSeparator)]
25 if {[exists jim::exe]} {
26 lappend p [file dirname $jim::exe]
28 lappend p {*}$auto_path
29 set auto_path $p
31 if {$tcl_interactive && [env HOME {}] ne ""} {
32 foreach src {.jimrc jimrc.tcl} {
33 if {[file exists [env HOME]/$src]} {
34 uplevel #0 source [env HOME]/$src
35 break
39 return ""
42 if {$tcl_platform(platform) eq "windows"} {
43 set jim::argv0 [string map {\\ /} $jim::argv0]
46 _jimsh_init