diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-04 14:31:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-04 14:31:43 (GMT) |
commit | 226bb13f4e093299c9d975ebd16c6cacb4af6356 (patch) | |
tree | 0248bd8acf2fac9dfed09af1cc6ca4717fe0a88b /tests/namespace.test | |
parent | 7f4cc308f37a5729cb679b8c859e8dba993095ca (diff) | |
download | tcl-226bb13f4e093299c9d975ebd16c6cacb4af6356.zip tcl-226bb13f4e093299c9d975ebd16c6cacb4af6356.tar.gz tcl-226bb13f4e093299c9d975ebd16c6cacb4af6356.tar.bz2 |
Fix [https://github.com/tcltk/tcl/runs/2263266926|failing test-cases] with --enable-symbols=mem build by reverting the series of commits that caused the memory-leak
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index dc0e56d..efd00a8 100644 --- a/tests/namespace.test +++ b/tests/namespace.test @@ -3289,8 +3289,8 @@ test namespace-56.2 {bug f97d4ee020: mutually-entangled deletion} { namespace eval ::testing { namespace eval abc {proc xyz {} {}} namespace eval def {proc xyz {} {}} - trace add command abc::xyz delete "namespace delete ::testing::def; #" - trace add command def::xyz delete "namespace delete ::testing::abc; #" + trace add command abc::xyz delete "namespace delete ::testing::def {}; #" + trace add command def::xyz delete "namespace delete ::testing::abc {}; #" } namespace delete ::testing } {} |