summaryrefslogtreecommitdiffstats
path: root/Modules/zlib/zlib.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #18527: Upgrade internal copy of zlib to 1.2.8Christian Heimes2013-10-211-95/+250
* Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,Terry Jan Reedy2013-03-111-1/+1
* Import files from zlib 1.2.5.Martin v. Löwis2010-07-301-453/+709
* Import zlib into Python tree.Martin v. Löwis2006-01-031-0/+1357
'>bug_2f9df4c4fa Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/http.test3
-rw-r--r--tests/init.test7
-rw-r--r--tests/pkg.test3
3 files changed, 6 insertions, 7 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
diff --git a/tests/init.test b/tests/init.test
index db93b60..6855098 100644
--- a/tests/init.test
+++ b/tests/init.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: init.test,v 1.10 2003/06/26 00:54:21 dgp Exp $
+# RCS: @(#) $Id: init.test,v 1.11 2003/06/27 17:22:41 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -67,10 +67,6 @@ interp eval $testInterp [list namespace import -force ::tcltest::*]
interp eval $testInterp {
-if {[lsearch [namespace children] ::tcltest] == -1} {
- package require tcltest
-}
-
auto_reset
catch {rename parray {}}
@@ -201,6 +197,7 @@ foreach arg [subst -nocommands -novariables {
incr count
}
+cleanupTests
} ;# End of [interp eval $testInterp]
# cleanup
diff --git a/tests/pkg.test b/tests/pkg.test