diff options
author | hobbs <hobbs> | 2006-05-29 21:52:47 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-05-29 21:52:47 (GMT) |
commit | 843f3e406c6e4cfad692db418c39912f538e25d6 (patch) | |
tree | e8601b4d9d9447943bc935ddbbb8246e8ed71a56 /tests | |
parent | a053e2dbfdbece77b6327687523cec416d6821fd (diff) | |
download | tk-843f3e406c6e4cfad692db418c39912f538e25d6.zip tk-843f3e406c6e4cfad692db418c39912f538e25d6.tar.gz tk-843f3e406c6e4cfad692db418c39912f538e25d6.tar.bz2 |
* tests/entry.test (entry-22.1):
* tests/listbox.test (listbox-6.15):
* generic/tkListbox.c (ListboxInsertSubCmd, ListboxDeleteSubCmd):
Ignore Tcl_SetVar2Ex failure of listVarName, similar to entry
widget handling. [Bug 1424513]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/entry.test | 14 | ||||
-rw-r--r-- | tests/listbox.test | 14 |
2 files changed, 26 insertions, 2 deletions
diff --git a/tests/entry.test b/tests/entry.test index 101a0c6..4030152 100644 --- a/tests/entry.test +++ b/tests/entry.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: entry.test,v 1.14 2003/02/25 00:46:41 hobbs Exp $ +# RCS: @(#) $Id: entry.test,v 1.14.2.1 2006/05/29 21:52:47 hobbs Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -1613,6 +1613,18 @@ test entry-21.1 {selection present while disabled, bug 637828} { lappend out [.e selection present] [selection get] } {1 1 345} +test entry-22.1 {lost namespaced textvar} { + destroy .e + namespace eval test { variable foo {a b} } + entry .e -textvariable ::test::foo + namespace delete test + .e insert end "more stuff" + .e delete 5 end + catch {set ::test::foo} result + list [.e get] [.e cget -textvar] $result +} [list "a bmo" ::test::foo \ + {can't read "::test::foo": no such variable}] + destroy .e # XXX Still need to write tests for EntryBlinkProc, EntryFocusProc, diff --git a/tests/listbox.test b/tests/listbox.test index a6f858c..29e629e 100644 --- a/tests/listbox.test +++ b/tests/listbox.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: listbox.test,v 1.21.2.1 2003/10/13 00:55:25 hobbs Exp $ +# RCS: @(#) $Id: listbox.test,v 1.21.2.2 2006/05/29 21:52:47 hobbs Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -1109,6 +1109,18 @@ test listbox-6.14 {InsertEls procedure, check selection update} { .l2 insert 0 a .l2 curselection } [list 3 4 5] +test listbox-6.15 {InsertEls procedure, lost namespaced listvar, bug 1424513} { + destroy .l2 + namespace eval test { variable foo {a b} } + listbox .l2 -listvar ::test::foo + namespace delete test + .l2 insert end c d + .l2 delete end + .l2 insert end e f + catch {set ::test::foo} result + list [.l2 get 0 end] [.l2 cget -listvar] $result +} [list [list a b c e f] ::test::foo \ + {can't read "::test::foo": no such variable}] test listbox-7.1 {DeleteEls procedure} { |