diff options
author | vincentdarley <vincentdarley> | 2005-07-18 22:11:59 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-07-18 22:11:59 (GMT) |
commit | 3c996e73d6bb73987fb0111bfd20040fb7cc6715 (patch) | |
tree | bbe4da957a89759d8e5e54a83251d82987a132c8 /tests/textWind.test | |
parent | a2b4a75e74b95eaea3e881761f6c79ee0ad2d12a (diff) | |
download | tk-3c996e73d6bb73987fb0111bfd20040fb7cc6715.zip tk-3c996e73d6bb73987fb0111bfd20040fb7cc6715.tar.gz tk-3c996e73d6bb73987fb0111bfd20040fb7cc6715.tar.bz2 |
fix to text widget 'mark prev' segfault
Diffstat (limited to 'tests/textWind.test')
-rw-r--r-- | tests/textWind.test | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/textWind.test b/tests/textWind.test index 0fbd84f..2ca05cb2 100644 --- a/tests/textWind.test +++ b/tests/textWind.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: textWind.test,v 1.19 2004/12/04 00:04:42 dkf Exp $ +# RCS: @(#) $Id: textWind.test,v 1.20 2005/07/18 22:12:11 vincentdarley Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -451,7 +451,10 @@ test textWind-10.4 {EmbWinLayoutProc procedure, error in creating window} {textf frame .t.f.f -width 10 -height 20 -bg $color } set msg {} - while {[llength $msg] < 2} {update ; .t bbox 1.5 ; after 10} + set count 0 + while {([llength $msg] < 2) && ($count < 100)} { + update ; incr count; .t bbox 1.5 ; after 10 + } lappend msg [.t bbox 1.5] [winfo exists .t.f.f] } [list {{can't embed .t.f.f relative to .t}} {{window name "f" already exists in parent}} [list 40 [expr {11+$fixedDiff/2}] 0 0] 1] test textWind-10.4.1 {EmbWinLayoutProc procedure, error in creating window} {textfonts} { |