diff options
author | pspjuth <peter.spjuth@gmail.com> | 2004-09-16 18:01:20 (GMT) |
---|---|---|
committer | pspjuth <peter.spjuth@gmail.com> | 2004-09-16 18:01:20 (GMT) |
commit | 3d047ef34c8fe79f75163ee7af094a65ca966e35 (patch) | |
tree | ec9c1f4c62c355993bfc4a6c4bbad381d929241f /tests/place.test | |
parent | 79f7ee48d3802961680fedc40ee6de76f230344b (diff) | |
download | tk-3d047ef34c8fe79f75163ee7af094a65ca966e35.zip tk-3d047ef34c8fe79f75163ee7af094a65ca966e35.tar.gz tk-3d047ef34c8fe79f75163ee7af094a65ca966e35.tar.bz2 |
Fixed a memory leak when a placed widget was forgotten. [Bug 1028888]
Diffstat (limited to 'tests/place.test')
-rw-r--r-- | tests/place.test | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/tests/place.test b/tests/place.test index 847047c..c2a4042 100644 --- a/tests/place.test +++ b/tests/place.test @@ -5,12 +5,15 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: place.test,v 1.10 2003/04/01 21:06:49 dgp Exp $ +# RCS: @(#) $Id: place.test,v 1.11 2004/09/16 18:01:20 pspjuth Exp $ package require tcltest 2.1 eval tcltest::configure $argv tcltest::loadTestedCommands +# Used for constraining memory leak tests +testConstraint memory [llength [info commands memory]] + # XXX - This test file is woefully incomplete. At present, only a # few of the features are tested. @@ -380,6 +383,47 @@ test place-13.1 {test respect for internalborder} { set res } {196x188+2+10 177x186+5+7} +test place-14.1 {memory leak testing} -setup { + proc getbytes {} { + set lines [split [memory info] "\n"] + lindex [lindex $lines 3] 3 + } + # Repeat each body checking that memory does not increase + proc stress {args} { + set res {} + foreach body $args { + set end 0 + for {set i 0} {$i < 5} {incr i} { + uplevel 1 $body + set tmp $end + set end [getbytes] + } + lappend res [expr {$end - $tmp}] + } + return $res + } +} -constraints memory -body { + # Test all manners of forgetting a slave + frame .f + frame .f.f + stress { + place .f.f -x [expr {1 + 1}] -y [expr {2 + 2}] + place forget .f.f + } { + place .f.f -x [expr {1 + 1}] -y [expr {2 + 2}] + pack .f.f + } { + place .f.f -x [expr {1 + 1}] -y [expr {2 + 2}] + destroy .f + frame .f + frame .f.f + } +} -result {0 0 0} -cleanup { + destroy .f + rename getbytes {} + rename stress {} +} + catch {destroy .t} # cleanup |