diff options
author | dgp <dgp@users.sourceforge.net> | 2003-06-27 17:22:40 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-06-27 17:22:40 (GMT) |
commit | 00a84e3e9482271c8f74d33197f29e3fb803e7b4 (patch) | |
tree | 02f005d7e66201bce02b93f1e4ace511917609ac /tests/http.test | |
parent | 051e42a40afc1190bf39f9452f7f9e3d48534ebe (diff) | |
download | tcl-00a84e3e9482271c8f74d33197f29e3fb803e7b4.zip tcl-00a84e3e9482271c8f74d33197f29e3fb803e7b4.tar.gz tcl-00a84e3e9482271c8f74d33197f29e3fb803e7b4.tar.bz2 |
* tests/init.test: Added [cleanupTests] to report results of tests
* tests/pkg.test: that run in slave interps. [Bugs 761334,761344]
* tests/http.test: Used more reliable path to find httpd script.
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/http.test b/tests/http.test index 4beba00..3049742 100644 --- a/tests/http.test +++ b/tests/http.test @@ -12,7 +12,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # -# RCS: @(#) $Id: http.test,v 1.33 2003/02/11 20:41:38 kennykb Exp $ +# RCS: @(#) $Id: http.test,v 1.34 2003/06/27 17:22:41 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -48,6 +48,7 @@ catch {unset data} # Ensure httpd file exists set origFile [file join $::tcltest::testsDirectory httpd] +set origFile [file join [pwd] [file dirname [info script]] httpd] set httpdFile [file join [temporaryDirectory] httpd_[pid]] if {![file exists $httpdFile]} { makeFile "" $httpdFile |