diff options
author | dgp <dgp@users.sourceforge.net> | 2002-06-13 15:31:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-06-13 15:31:38 (GMT) |
commit | 71ca9685bbb22a1987831ff214a05b647cbb4426 (patch) | |
tree | 684f81d68c518ddcb7051828b05c86b22f8591ea | |
parent | 7acca7516ab66ecbea898bbe3ab63c7f3ec7a030 (diff) | |
download | tk-71ca9685bbb22a1987831ff214a05b647cbb4426.zip tk-71ca9685bbb22a1987831ff214a05b647cbb4426.tar.gz tk-71ca9685bbb22a1987831ff214a05b647cbb4426.tar.bz2 |
* tests/cursor.test: corrected error after cursor-2.2.
* tests/defs.tcl: Added enhancements to Tk's fake version of
tcltest required by recent cursor.test changes.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | tests/cursor.test | 4 | ||||
-rw-r--r-- | tests/defs.tcl | 8 |
3 files changed, 14 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2002-06-13 Don Porter <dgp@users.sf.net> + + * tests/cursor.test: corrected error after cursor-2.2. + * tests/defs.tcl: Added enhancements to Tk's fake version of + tcltest required by recent cursor.test changes. + 2002-06-13 Donal K. Fellows <fellowsd@cs.man.ac.uk> * tests/cursor.test (cursor-2.[34]): Tests added to ensure that diff --git a/tests/cursor.test b/tests/cursor.test index 35a1d84..11e23aa 100644 --- a/tests/cursor.test +++ b/tests/cursor.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: cursor.test,v 1.4 2002/06/13 09:46:39 dkf Exp $ +# RCS: @(#) $Id: cursor.test,v 1.5 2002/06/13 15:31:39 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -85,7 +85,7 @@ foreach wincur(num) $wincur(data_octal) { append wincur(data_binary) [binary format c 0$wincur(num)] } set wincur(dir) [::tcltest::makeDirectory {dir with spaces}] -set wincur(file) [::tcltest::makeFile $curdata "test file.cur" $wincur(dir)] +set wincur(file) [::tcltest::makeFile $wincur(data_binary) "test file.cur" $wincur(dir)] test cursor-2.3 {Tk_GetCursor procedure: cursor specs are lists} {pcOnly} { destroy .b1 button .b1 -cursor [list @$wincur(file)] diff --git a/tests/defs.tcl b/tests/defs.tcl index 3c79557..e16a136 100644 --- a/tests/defs.tcl +++ b/tests/defs.tcl @@ -11,7 +11,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: defs.tcl,v 1.8 2001/10/19 17:43:35 hobbs Exp $ +# RCS: @(#) $Id: defs.tcl,v 1.9 2002/06/13 15:31:39 dgp Exp $ # Initialize wish shell @@ -784,7 +784,10 @@ proc ::tcltest::normalizeMsg {msg} { # cleanupTests was called, add it to the $filesMade list, so it will # be removed by the next call to cleanupTests. # -proc ::tcltest::makeFile {contents name} { +proc ::tcltest::makeFile {contents name {directory {}}} { + if {[string length $directory]} { + set name [file join $directory $name] + } set fd [open $name w] fconfigure $fd -translation lf if {[string index $contents [expr {[string length $contents] - 1}]] == "\n"} { @@ -819,6 +822,7 @@ proc ::tcltest::makeDirectory {name} { if {[lsearch -exact $::tcltest::filesMade $fullName] == -1} { lappend ::tcltest::filesMade $fullName } + return $fullName } proc ::tcltest::removeDirectory {name} { |