diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-19 09:50:12 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-19 09:50:12 (GMT) |
commit | ee8be54ede03c2d1f37f4639dcff5b9a94722992 (patch) | |
tree | c6113f5ab4d34be705f30ffe00810d518778980b /tests/trace.test | |
parent | 6265c896a313dac8630f75042b2ab9df77013882 (diff) | |
download | tcl-ee8be54ede03c2d1f37f4639dcff5b9a94722992.zip tcl-ee8be54ede03c2d1f37f4639dcff5b9a94722992.tar.gz tcl-ee8be54ede03c2d1f37f4639dcff5b9a94722992.tar.bz2 |
Add test-case for Bug #2438181 (which passes in Tcl 8.4 but fails in 8.5/8.6).
Provided by Poor Yorick
Diffstat (limited to 'tests/trace.test')
-rw-r--r-- | tests/trace.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/trace.test b/tests/trace.test index 80bdb4a..9a0912d 100644 --- a/tests/trace.test +++ b/tests/trace.test @@ -1666,6 +1666,16 @@ test trace-21.11 {trace execution and alias} -setup { rename ::x {} } -result {:: ::} +proc set2 args { + set {*}$args +} + +test trace-21.12 {bug 2438181} -setup { + trace add execution set2 leave {puts one two three #;} +} -body { + set2 a hello +} -returnCodes error -result {wrong # args: should be "puts ?-nonewline? ?channelId? string"} + proc factorial {n} { if {$n != 1} { return [expr {$n * [factorial [expr {$n -1 }]]}] } return 1 |