summaryrefslogtreecommitdiffstats
path: root/tests/tcltests.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcltests.tcl')
-rw-r--r--tests/tcltests.tcl37
1 files changed, 35 insertions, 2 deletions
diff --git a/tests/tcltests.tcl b/tests/tcltests.tcl
index c8759a8..c3c8650 100644
--- a/tests/tcltests.tcl
+++ b/tests/tcltests.tcl
@@ -2,7 +2,6 @@
package require tcltest 2.2
namespace import ::tcltest::*
-
testConstraint exec [llength [info commands exec]]
testConstraint fcopy [llength [info commands fcopy]]
testConstraint fileevent [llength [info commands fileevent]]
@@ -10,4 +9,38 @@ testConstraint thread [
expr {0 == [catch {package require Thread 2.7-}]}]
testConstraint notValgrind [expr {![testConstraint valgrind]}]
-package provide tcltests 0.1 \ No newline at end of file
+
+namespace eval ::tcltests {
+
+
+ proc init {} {
+ if {[namespace which ::tcl::file::tempdir] eq {}} {
+ interp alias {} [namespace current]::tempdir {} [
+ namespace current]::tempdir_alternate
+ } else {
+ interp alias {} [namespace current]::tempdir {} ::tcl::file::tempdir
+ }
+ }
+
+
+ proc tempdir_alternate {} {
+ file tempfile tempfile
+ set tmpdir [file dirname $tempfile]
+ set execname [info nameofexecutable]
+ regsub -all {[^[:alpha:][:digit:]]} $execname _ execname
+ for {set i 0} {$i < 10000} {incr i} {
+ set time [clock milliseconds]
+ set name $tmpdir/${execname}_${time}_$i
+ if {![file exists $name]} {
+ file mkdir $name
+ return $name
+ }
+ }
+ error [list {could not create temporary directory}]
+ }
+
+ init
+
+ package provide tcltests 0.1
+}
+