Overview
Comment: | tls.tcl |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2455c6363a060b7e6a3254b2c36c8ac1 |
User & Date: | aborr on 2000-06-06 18:24:33 |
Other Links: | manifest | tags |
Context
2000-06-06
| ||
22:00 | moved range of port numbrs in tests from 2xxx to 8xxx check-in: 2f600f7fdd user: aborr tags: trunk | |
18:24 | tls.tcl check-in: 2455c6363a user: aborr tags: trunk | |
18:15 | moved to sub-directory 'oldTests' check-in: 1e4260a9c6 user: aborr tags: trunk | |
Changes
Modified tests/oldTests/tls.tcl from [2ccf3e19b8] to [d3ab0f3fc4].
1 2 3 | # # Copyright (C) 1997-2000 Matt Newman <[email protected]> # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # # Copyright (C) 1997-2000 Matt Newman <[email protected]> # # $Header: /home/rkeene/tmp/cvs2fossil/../tcltls/tls/tls/tests/oldTests/tls.tcl,v 1.2 2000/06/06 18:24:33 aborr Exp $ # set dir [file dirname [info script]] regsub {\.} [info tclversion] {} vshort if {$tcl_platform(platform) == "windows"} { if {[info exists tcl_platform(debug)]} { load $dir/../win/Debug$vshort/tls.dll } else { load $dir/../win/Release$vshort/tls.dll } } else { load [glob $dir/../unix/libtls*] } proc bgerror {err} { global errorInfo puts stderr "BG Error: $errorInfo" } source $dir/../tls.tcl set tls::debug 2 |