diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2016-10-03 01:10:16 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2016-10-03 01:10:16 (GMT) |
commit | 0bb135c827e61a652002b80bbdd7fdb07861cfbe (patch) | |
tree | 3e8340d5fedc02b5db2139bc222a9438202798cb /tests | |
parent | 7f63510379f770d796ae0f0f267efc02220cc971 (diff) | |
download | tcl-0bb135c827e61a652002b80bbdd7fdb07861cfbe.zip tcl-0bb135c827e61a652002b80bbdd7fdb07861cfbe.tar.gz tcl-0bb135c827e61a652002b80bbdd7fdb07861cfbe.tar.bz2 |
Fix [2bf561854c55a], interp alias to command whose name is the empty string.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interp.test | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/interp.test b/tests/interp.test index 34b5bf9..ed76f1a 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -606,6 +606,17 @@ test interp-14.10 {testing interp-alias: error messages} -setup { invoked from within "a 1"} +test interp-14.11 {{interp alias} {target named the empty string} {bug 2bf56185}} -setup { + set interp [interp create [info cmdcount]] + interp eval $interp { + proc {} args {return $args} + } + +} -body { + interp alias {} p1 $interp {} + p1 one two three +} -result {one two three} + # part 15: testing file sharing test interp-15.1 {testing file sharing} { catch {interp delete z} |