Artifact 4058010f56a3cf9b24ea08bb3f17b496624e4be5:
- File
build/test/tests/17-zipseek.tcl
— part of check-in
[49d6a04e90]
at
2011-07-19 19:08:27
on branch trunk
— Updated to not force setting of starkit::topdir, this would break starkits
Updated zipseek test to use $tcl_library to find Tclkit root (user: rkeene, size: 389) [annotate] [blame] [check-ins using]
#!/usr/bin/env tclsh # Open some file inside the tclkit that will be stored in compressed form set fd [open [file join $::tcl_library init.tcl]] gets $fd line1 if {[catch {seek $fd 0} result]} { puts "Got: $result" puts "Expected: <No Error>" exit 1 } gets $fd str if {[string equal $str $line1]} { exit 0 } puts "Got: $str" puts "Expected: $line1" exit 1