summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-03-22 19:45:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-03-22 19:45:41 (GMT)
commitca594770e82dc53a0da10eef03d155ff393d3abf (patch)
tree8ac6c53f4b684dc70e29893ff71eb567da53737a
parentaa3b9b49e082cbda4500eba60787a80c9cfd64e2 (diff)
parent47774b8476483c34bcea8cb8422233d0e1007bf1 (diff)
downloadtcl-ca594770e82dc53a0da10eef03d155ff393d3abf.zip
tcl-ca594770e82dc53a0da10eef03d155ff393d3abf.tar.gz
tcl-ca594770e82dc53a0da10eef03d155ff393d3abf.tar.bz2
New(ish) test interp-14.11 was missing its -cleanup.
-rw-r--r--changes18
-rw-r--r--tests/interp.test2
2 files changed, 20 insertions, 0 deletions
diff --git a/changes b/changes
index 034380b..68b2fb5 100644
--- a/changes
+++ b/changes
@@ -8698,3 +8698,21 @@ improvements to regexp engine from Postgres (lane,porter,fellows,seltenreich)
2016-07-20 tzdata updated to Olson's tzdata2016f (venkat)
--- Released 8.6.6, July 27, 2016 --- http://core.tcl.tk/tcl/ for details
+
+2016-09-07 (bug)[c09edf] Bad caching with custom resolver (neumann,nijtmans)
+
+2016-09-07 (bug)[4dbdd9] Memleak in test var-8.3 (mr_calvin,porter)
+
+2016-10-03 (bug)[2bf561] Allow empty command as alias target (yorick,nijtmans)
+
+
+
+
+
+
+
+
+
+
+
+--- Released 8.6.7, March 31, 2016 --- http://core.tcl.tk/tcl/ for details
diff --git a/tests/interp.test b/tests/interp.test
index 4d61e35..5299d82 100644
--- a/tests/interp.test
+++ b/tests/interp.test
@@ -615,6 +615,8 @@ test interp-14.11 {{interp alias} {target named the empty string} {bug 2bf56185}
} -body {
interp alias {} p1 $interp {}
p1 one two three
+} -cleanup {
+ interp delete $interp
} -result {one two three}
# part 15: testing file sharing