aboutsummaryrefslogtreecommitdiff
path: root/regtest.tcl
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-09-16 09:44:38 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:53 +1000
commit03f330c8223deddc8050205d3c275e6e260684b4 (patch)
tree95718949e8769538163a1bf00ef999ddbcc945cb /regtest.tcl
parent2f28a3cc9b01b61206c94f09f8ad1a59caaf7077 (diff)
downloadjimtcl-03f330c8223deddc8050205d3c275e6e260684b4.zip
jimtcl-03f330c8223deddc8050205d3c275e6e260684b4.tar.gz
jimtcl-03f330c8223deddc8050205d3c275e6e260684b4.tar.bz2
Fix crash on expand of empty arg
Found by the clang static analyser Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'regtest.tcl')
-rw-r--r--regtest.tcl6
1 files changed, 6 insertions, 0 deletions
diff --git a/regtest.tcl b/regtest.tcl
index 16b691e..05f0ac6 100644
--- a/regtest.tcl
+++ b/regtest.tcl
@@ -86,6 +86,12 @@ set x "switch -0 \$on \\"
lindex $x 1
puts "TEST 13 PASSED"
+# REGTEST 14
+# 14 Sep 2010 - command expands to nothing
+eval "{*}{}"
+puts "TEST 14 PASSED"
+
+
# TAKE THE FOLLOWING puts AS LAST LINE
puts "--- ALL TESTS PASSED ---"