diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-07-18 22:05:16 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-07-18 22:05:16 (GMT) |
commit | b32141b751698c59b7c8b574b52963976f3e0dd4 (patch) | |
tree | b0062290c77cc2a04a544ce224cd35faa7d50799 /tests | |
parent | 1bd8f407a5fc44a8b7a54bb78d8d29a2e5b0358f (diff) | |
download | tcl-b32141b751698c59b7c8b574b52963976f3e0dd4.zip tcl-b32141b751698c59b7c8b574b52963976f3e0dd4.tar.gz tcl-b32141b751698c59b7c8b574b52963976f3e0dd4.tar.bz2 |
[75b8433707] Plug a subtle memory leak in TclOO.
bug_75b8433707
Test suite very unhappy with this. Shoving into
a mistake branch until that's sorted.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/oo.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/oo.test b/tests/oo.test index d63e931..fcd9818 100644 --- a/tests/oo.test +++ b/tests/oo.test @@ -258,6 +258,19 @@ test oo-1.18 {OO: create object in NS with same name as global cmd} -setup { rename test-oo-1.18 {} A destroy } -result ::C +test oo-1.18.1 {Bug 75b8433707: memory leak in oo-1.18} -setup { + proc test-oo-1.18 {} return +} -constraints memory -body { + leaktest { + oo::class create A + oo::class create B {superclass A} + oo::define B constructor {} {A create test-oo-1.18} + B create C + A destroy + } +} -cleanup { + rename test-oo-1.18 {} +} -result 0 test oo-1.19 {basic test of OO functionality: teardown order} -body { oo::object create o namespace delete [info object namespace o] |