sl@0: # This file contains a collection of tests for the procedures in the sl@0: # file tclParse.c. Sourcing this file into Tcl runs the tests and sl@0: # generates output for errors. No output means no errors were found. sl@0: # sl@0: # Copyright (c) 1997 Sun Microsystems, Inc. sl@0: # Copyright (c) 1998-1999 by Scriptics Corporation. sl@0: # sl@0: # See the file "license.terms" for information on usage and redistribution sl@0: # of this file, and for a DISCLAIMER OF ALL WARRANTIES. sl@0: # sl@0: # RCS: @(#) $Id: parse.test,v 1.11.2.5 2006/03/07 05:30:24 dgp Exp $ sl@0: sl@0: if {[lsearch [namespace children] ::tcltest] == -1} { sl@0: package require tcltest 2 sl@0: namespace import -force ::tcltest::* sl@0: } sl@0: sl@0: if {[info commands testparser] == {}} { sl@0: puts "This application hasn't been compiled with the \"testparser\"" sl@0: puts "command, so I can't test the Tcl parser." sl@0: ::tcltest::cleanupTests sl@0: return sl@0: } sl@0: sl@0: test parse-1.1 {Tcl_ParseCommand procedure, computing string length} { sl@0: testparser [bytestring "foo\0 bar"] -1 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-1.2 {Tcl_ParseCommand procedure, computing string length} { sl@0: testparser "foo bar" -1 sl@0: } {- {foo bar} 2 simple foo 1 text foo 0 simple bar 1 text bar 0 {}} sl@0: test parse-1.3 {Tcl_ParseCommand procedure, leading space} { sl@0: testparser " \n\t foo" 0 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-1.4 {Tcl_ParseCommand procedure, leading space} { sl@0: testparser "\f\r\vfoo" 0 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-1.5 {Tcl_ParseCommand procedure, backslash-newline in leading space} { sl@0: testparser " \\\n foo" 0 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-1.6 {Tcl_ParseCommand procedure, backslash-newline in leading space} { sl@0: testparser { \a foo} 0 sl@0: } {- {\a foo} 2 word {\a} 1 backslash {\a} 0 simple foo 1 text foo 0 {}} sl@0: test parse-1.7 {Tcl_ParseCommand procedure, missing continuation line in leading space} { sl@0: testparser " \\\n" 0 sl@0: } {- {} 0 {}} sl@0: test parse-1.8 {Tcl_ParseCommand procedure, eof in leading space} { sl@0: testparser " foo" 3 sl@0: } {- {} 0 { foo}} sl@0: sl@0: test parse-2.1 {Tcl_ParseCommand procedure, comments} { sl@0: testparser "# foo bar\n foo" 0 sl@0: } {{# foo bar sl@0: } foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-2.2 {Tcl_ParseCommand procedure, several comments} { sl@0: testparser " # foo bar\n # another comment\n\n foo" 0 sl@0: } {{# foo bar sl@0: # another comment sl@0: } foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-2.3 {Tcl_ParseCommand procedure, backslash-newline in comments} { sl@0: testparser " # foo bar\\\ncomment on continuation line\nfoo" 0 sl@0: } {#\ foo\ bar\\\ncomment\ on\ continuation\ line\n foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-2.4 {Tcl_ParseCommand procedure, missing continuation line in comment} { sl@0: testparser "# \\\n" 0 sl@0: } {#\ \ \ \\\n {} 0 {}} sl@0: test parse-2.5 {Tcl_ParseCommand procedure, eof in comment} { sl@0: testparser " # foo bar\nfoo" 8 sl@0: } {{# foo b} {} 0 {ar sl@0: foo}} sl@0: sl@0: test parse-3.1 {Tcl_ParseCommand procedure, parsing words, skipping space} { sl@0: testparser "foo bar\t\tx" 0 sl@0: } {- {foo bar x} 3 simple foo 1 text foo 0 simple bar 1 text bar 0 simple x 1 text x 0 {}} sl@0: test parse-3.2 {Tcl_ParseCommand procedure, missing continuation line in leading space} { sl@0: testparser "abc \\\n" 0 sl@0: } {- abc\ \ \\\n 1 simple abc 1 text abc 0 {}} sl@0: test parse-3.3 {Tcl_ParseCommand procedure, parsing words, command ends in space} { sl@0: testparser "foo ; bar x" 0 sl@0: } {- {foo ;} 1 simple foo 1 text foo 0 { bar x}} sl@0: test parse-3.4 {Tcl_ParseCommand procedure, parsing words, command ends in space} { sl@0: testparser "foo " 5 sl@0: } {- {foo } 1 simple foo 1 text foo 0 { }} sl@0: test parse-3.5 {Tcl_ParseCommand procedure, quoted words} { sl@0: testparser {foo "a b c" d "efg";} 0 sl@0: } {- {foo "a b c" d "efg";} 4 simple foo 1 text foo 0 simple {"a b c"} 1 text {a b c} 0 simple d 1 text d 0 simple {"efg"} 1 text efg 0 {}} sl@0: test parse-3.6 {Tcl_ParseCommand procedure, words in braces} { sl@0: testparser {foo {a $b [concat foo]} {c d}} 0 sl@0: } {- {foo {a $b [concat foo]} {c d}} 3 simple foo 1 text foo 0 simple {{a $b [concat foo]}} 1 text {a $b [concat foo]} 0 simple {{c d}} 1 text {c d} 0 {}} sl@0: test parse-3.7 {Tcl_ParseCommand procedure, error in unquoted word} { sl@0: list [catch {testparser "foo \$\{abc" 0} msg] $msg $errorInfo sl@0: } {1 {missing close-brace for variable name} missing\ close-brace\ for\ variable\ name\n\ \ \ \ (remainder\ of\ script:\ \"\{abc\")\n\ \ \ \ invoked\ from\ within\n\"testparser\ \"foo\ \\\$\\\{abc\"\ 0\"} sl@0: sl@0: test parse-4.1 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {foo} 0 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-4.2 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {{abc}} 0 sl@0: } {- {{abc}} 1 simple {{abc}} 1 text abc 0 {}} sl@0: test parse-4.3 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {"c d"} 0 sl@0: } {- {"c d"} 1 simple {"c d"} 1 text {c d} 0 {}} sl@0: test parse-4.4 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {x$d} 0 sl@0: } {- {x$d} 1 word {x$d} 3 text x 0 variable {$d} 1 text d 0 {}} sl@0: test parse-4.5 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {"a [foo] b"} 0 sl@0: } {- {"a [foo] b"} 1 word {"a [foo] b"} 3 text {a } 0 command {[foo]} 0 text { b} 0 {}} sl@0: test parse-4.6 {Tcl_ParseCommand procedure, simple words} { sl@0: testparser {$x} 0 sl@0: } {- {$x} 1 word {$x} 2 variable {$x} 1 text x 0 {}} sl@0: sl@0: test parse-5.1 {Tcl_ParseCommand procedure, backslash-newline terminates word} { sl@0: testparser "{abc}\\\n" 0 sl@0: } {- \{abc\}\\\n 1 simple {{abc}} 1 text abc 0 {}} sl@0: test parse-5.2 {Tcl_ParseCommand procedure, backslash-newline terminates word} { sl@0: testparser "foo\\\nbar" 0 sl@0: } {- foo\\\nbar 2 simple foo 1 text foo 0 simple bar 1 text bar 0 {}} sl@0: test parse-5.3 {Tcl_ParseCommand procedure, word terminator is command terminator} { sl@0: testparser "foo\n bar" 0 sl@0: } {- {foo sl@0: } 1 simple foo 1 text foo 0 { bar}} sl@0: test parse-5.4 {Tcl_ParseCommand procedure, word terminator is command terminator} { sl@0: testparser "foo; bar" 0 sl@0: } {- {foo;} 1 simple foo 1 text foo 0 { bar}} sl@0: test parse-5.5 {Tcl_ParseCommand procedure, word terminator is end of string} { sl@0: testparser "\"foo\" bar" 5 sl@0: } {- {"foo"} 1 simple {"foo"} 1 text foo 0 { bar}} sl@0: test parse-5.6 {Tcl_ParseCommand procedure, junk after close quote} { sl@0: list [catch {testparser {foo "bar"x} 0} msg] $msg $errorInfo sl@0: } {1 {extra characters after close-quote} {extra characters after close-quote sl@0: (remainder of script: "x") sl@0: invoked from within sl@0: "testparser {foo "bar"x} 0"}} sl@0: test parse-5.7 {Tcl_ParseCommand procedure, backslash-newline after close quote} { sl@0: testparser "foo \"bar\"\\\nx" 0 sl@0: } {- foo\ \"bar\"\\\nx 3 simple foo 1 text foo 0 simple {"bar"} 1 text bar 0 simple x 1 text x 0 {}} sl@0: test parse-5.8 {Tcl_ParseCommand procedure, junk after close brace} { sl@0: list [catch {testparser {foo {bar}x} 0} msg] $msg $errorInfo sl@0: } {1 {extra characters after close-brace} {extra characters after close-brace sl@0: (remainder of script: "x") sl@0: invoked from within sl@0: "testparser {foo {bar}x} 0"}} sl@0: test parse-5.9 {Tcl_ParseCommand procedure, backslash-newline after close brace} { sl@0: testparser "foo {bar}\\\nx" 0 sl@0: } {- foo\ \{bar\}\\\nx 3 simple foo 1 text foo 0 simple {{bar}} 1 text bar 0 simple x 1 text x 0 {}} sl@0: test parse-5.10 {Tcl_ParseCommand procedure, multiple deletion of non-static buffer} { sl@0: # This test is designed to catch bug 1681. sl@0: list [catch {testparser "a \"\\1\\2\\3\\4\\5\\6\\7\\8\\9\\1\\2\\3\\4\\5\\6\\7\\8" 0} msg] $msg $errorInfo sl@0: } "1 {missing \"} {missing \" sl@0: (remainder of script: \"\"\\1\\2\\3\\4\\5\\6\\7\\8\\9\\1\\2\\3\\4\\5\\6\\7\\8\") sl@0: invoked from within sl@0: \"testparser \"a \\\"\\\\1\\\\2\\\\3\\\\4\\\\5\\\\6\\\\7\\\\8\\\\9\\\\1\\\\2\\\\3\\\\4\\\\5\\\\6\\\\7\\\\8\" 0\"}" sl@0: sl@0: test parse-6.1 {ParseTokens procedure, empty word} { sl@0: testparser {""} 0 sl@0: } {- {""} 1 simple {""} 1 text {} 0 {}} sl@0: test parse-6.2 {ParseTokens procedure, simple range} { sl@0: testparser {"abc$x.e"} 0 sl@0: } {- {"abc$x.e"} 1 word {"abc$x.e"} 4 text abc 0 variable {$x} 1 text x 0 text .e 0 {}} sl@0: test parse-6.3 {ParseTokens procedure, variable reference} { sl@0: testparser {abc$x.e $y(z)} 0 sl@0: } {- {abc$x.e $y(z)} 2 word {abc$x.e} 4 text abc 0 variable {$x} 1 text x 0 text .e 0 word {$y(z)} 3 variable {$y(z)} 2 text y 0 text z 0 {}} sl@0: test parse-6.4 {ParseTokens procedure, variable reference} { sl@0: list [catch {testparser {$x([a )} 0} msg] $msg sl@0: } {1 {missing close-bracket}} sl@0: test parse-6.5 {ParseTokens procedure, command substitution} { sl@0: testparser {[foo $x bar]z} 0 sl@0: } {- {[foo $x bar]z} 1 word {[foo $x bar]z} 2 command {[foo $x bar]} 0 text z 0 {}} sl@0: test parse-6.6 {ParseTokens procedure, command substitution} { sl@0: testparser {[foo \] [a b]]} 0 sl@0: } {- {[foo \] [a b]]} 1 word {[foo \] [a b]]} 1 command {[foo \] [a b]]} 0 {}} sl@0: test parse-6.7 {ParseTokens procedure, error in command substitution} { sl@0: list [catch {testparser {a [b {}c d] e} 0} msg] $msg $errorInfo sl@0: } {1 {extra characters after close-brace} {extra characters after close-brace sl@0: (remainder of script: "c d] e") sl@0: invoked from within sl@0: "testparser {a [b {}c d] e} 0"}} sl@0: test parse-6.8 {ParseTokens procedure, error in command substitution} { sl@0: info complete {a [b {}c d]} sl@0: } {1} sl@0: test parse-6.9 {ParseTokens procedure, error in command substitution} { sl@0: info complete {a [b "c d} sl@0: } {0} sl@0: test parse-6.10 {ParseTokens procedure, incomplete sub-command} { sl@0: info complete {puts [ sl@0: expr 1+1 sl@0: #this is a comment ]} sl@0: } {0} sl@0: test parse-6.11 {ParseTokens procedure, memory allocation for big nested command} { sl@0: testparser {[$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b)]} 0 sl@0: } {- {[$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b)]} 1 word {[$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b)]} 1 command {[$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b)]} 0 {}} sl@0: test parse-6.12 {ParseTokens procedure, missing close bracket} { sl@0: list [catch {testparser {[foo $x bar} 0} msg] $msg $errorInfo sl@0: } {1 {missing close-bracket} {missing close-bracket sl@0: (remainder of script: "[foo $x bar") sl@0: invoked from within sl@0: "testparser {[foo $x bar} 0"}} sl@0: test parse-6.13 {ParseTokens procedure, backslash-newline without continuation line} { sl@0: list [catch {testparser "\"a b\\\n" 0} msg] $msg $errorInfo sl@0: } {1 {missing "} missing\ \"\n\ \ \ \ (remainder\ of\ script:\ \"\"a\ b\\\n\")\n\ \ \ \ invoked\ from\ within\n\"testparser\ \"\\\"a\ b\\\\\\n\"\ 0\"} sl@0: test parse-6.14 {ParseTokens procedure, backslash-newline} { sl@0: testparser "b\\\nc" 0 sl@0: } {- b\\\nc 2 simple b 1 text b 0 simple c 1 text c 0 {}} sl@0: test parse-6.15 {ParseTokens procedure, backslash-newline} { sl@0: testparser "\"b\\\nc\"" 0 sl@0: } {- \"b\\\nc\" 1 word \"b\\\nc\" 3 text b 0 backslash \\\n 0 text c 0 {}} sl@0: test parse-6.16 {ParseTokens procedure, backslash substitution} { sl@0: testparser {\n\a\x7f} 0 sl@0: } {- {\n\a\x7f} 1 word {\n\a\x7f} 3 backslash {\n} 0 backslash {\a} 0 backslash {\x7f} 0 {}} sl@0: test parse-6.17 {ParseTokens procedure, null characters} { sl@0: testparser [bytestring "foo\0zz"] 0 sl@0: } "- [bytestring foo\0zz] 1 word [bytestring foo\0zz] 3 text foo 0 text [bytestring \0] 0 text zz 0 {}" sl@0: test parse-6.18 {ParseTokens procedure, seek past numBytes for close-bracket} { sl@0: # Test for Bug 681841 sl@0: list [catch {testparser {[a]} 2} msg] $msg sl@0: } {1 {missing close-bracket}} sl@0: sl@0: test parse-7.1 {Tcl_FreeParse and ExpandTokenArray procedures} { sl@0: testparser {$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) } 0 sl@0: } {- {$a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) $a(b) } 16 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 word {$a(b)} 3 variable {$a(b)} 2 text a 0 text b 0 {}} sl@0: sl@0: testConstraint testevalobjv [llength [info commands testevalobjv]] sl@0: testConstraint testevalex [llength [info commands testevalex]] sl@0: test parse-8.1 {Tcl_EvalObjv procedure} testevalobjv { sl@0: testevalobjv 0 concat this is a test sl@0: } {this is a test} sl@0: test parse-8.2 {Tcl_EvalObjv procedure, unknown commands} testevalobjv { sl@0: rename unknown unknown.old sl@0: set x [catch {testevalobjv 10 asdf poiu} msg] sl@0: rename unknown.old unknown sl@0: list $x $msg sl@0: } {1 {invalid command name "asdf"}} sl@0: test parse-8.3 {Tcl_EvalObjv procedure, unknown commands} testevalobjv { sl@0: rename unknown unknown.old sl@0: proc unknown args { sl@0: return "unknown $args" sl@0: } sl@0: set x [catch {testevalobjv 0 asdf poiu} msg] sl@0: rename unknown {} sl@0: rename unknown.old unknown sl@0: list $x $msg sl@0: } {0 {unknown asdf poiu}} sl@0: test parse-8.4 {Tcl_EvalObjv procedure, unknown commands} testevalobjv { sl@0: rename unknown unknown.old sl@0: proc unknown args { sl@0: error "I don't like that command" sl@0: } sl@0: set x [catch {testevalobjv 0 asdf poiu} msg] sl@0: rename unknown {} sl@0: rename unknown.old unknown sl@0: list $x $msg sl@0: } {1 {I don't like that command}} sl@0: test parse-8.5 {Tcl_EvalObjv procedure, command traces} testevalobjv { sl@0: testevalobjv 0 set x 123 sl@0: testcmdtrace tracetest {testevalobjv 0 set x $x} sl@0: } {{testevalobjv 0 set x $x} {testevalobjv 0 set x 123} {set x 123} {set x 123}} sl@0: test parse-8.7 {Tcl_EvalObjv procedure, TCL_EVAL_GLOBAL flag} testevalobjv { sl@0: proc x {} { sl@0: set y 23 sl@0: set z [testevalobjv 1 set y] sl@0: return [list $z $y] sl@0: } sl@0: catch {unset y} sl@0: set y 16 sl@0: x sl@0: } {16 23} sl@0: test parse-8.8 {Tcl_EvalObjv procedure, async handlers} testevalobjv { sl@0: proc async1 {result code} { sl@0: global aresult acode sl@0: set aresult $result sl@0: set acode $code sl@0: return "new result" sl@0: } sl@0: set handler1 [testasync create async1] sl@0: set aresult xxx sl@0: set acode yyy sl@0: set x [list [catch [list testevalobjv 0 testasync mark $handler1 original 0] msg] $msg $acode $aresult] sl@0: testasync delete sl@0: set x sl@0: } {0 {new result} 0 original} sl@0: test parse-8.9 {Tcl_EvalObjv procedure, exceptional return} testevalobjv { sl@0: list [catch {testevalobjv 0 error message} msg] $msg sl@0: } {1 message} sl@0: test parse-8.10 {Tcl_EvalObjv procedure, TCL_EVAL_GLOBAL} testevalobjv { sl@0: rename ::unknown unknown.save sl@0: proc ::unknown args {lappend ::info [info level]} sl@0: catch {rename ::noSuchCommand {}} sl@0: set ::info {} sl@0: namespace eval test_ns_1 { sl@0: testevalobjv 1 noSuchCommand sl@0: uplevel #0 noSuchCommand sl@0: } sl@0: namespace delete test_ns_1 sl@0: rename ::unknown {} sl@0: rename unknown.save ::unknown sl@0: set ::info sl@0: } {1 1} sl@0: test parse-8.11 {Tcl_EvalObjv procedure, TCL_EVAL_INVOKE} testevalobjv { sl@0: rename ::unknown unknown.save sl@0: proc ::unknown args {lappend ::info [info level]; uplevel 1 foo} sl@0: proc ::foo args {lappend ::info global} sl@0: catch {rename ::noSuchCommand {}} sl@0: set ::slave [interp create] sl@0: $::slave alias bar noSuchCommand sl@0: set ::info {} sl@0: namespace eval test_ns_1 { sl@0: proc foo args {lappend ::info namespace} sl@0: $::slave eval bar sl@0: testevalobjv 1 [list $::slave eval bar] sl@0: uplevel #0 [list $::slave eval bar] sl@0: } sl@0: namespace delete test_ns_1 sl@0: rename ::foo {} sl@0: rename ::unknown {} sl@0: rename unknown.save ::unknown sl@0: set ::info sl@0: } [subst {[set level 2; incr level [info level]] global 1 global 1 global}] sl@0: test parse-8.12 {Tcl_EvalObjv procedure, TCL_EVAL_INVOKE} { sl@0: set ::auto_index(noSuchCommand) { sl@0: proc noSuchCommand {} {lappend ::info global} sl@0: } sl@0: set ::auto_index(::[string trimleft [namespace current]::test_ns_1::noSuchCommand :]) [list \ sl@0: proc [namespace current]::test_ns_1::noSuchCommand {} { sl@0: lappend ::info ns sl@0: }] sl@0: catch {rename ::noSuchCommand {}} sl@0: set ::slave [interp create] sl@0: $::slave alias bar noSuchCommand sl@0: set ::info {} sl@0: namespace eval test_ns_1 { sl@0: $::slave eval bar sl@0: } sl@0: namespace delete test_ns_1 sl@0: interp delete $::slave sl@0: catch {rename ::noSuchCommand {}} sl@0: set ::info sl@0: } global sl@0: sl@0: test parse-9.1 {Tcl_LogCommandInfo, line numbers} { sl@0: catch {unset x} sl@0: list [catch {testevalex {for {} 1 {} { sl@0: sl@0: sl@0: # asdf sl@0: set x sl@0: }}}] $errorInfo sl@0: } {1 {can't read "x": no such variable sl@0: while executing sl@0: "set x" sl@0: ("for" body line 5) sl@0: invoked from within sl@0: "for {} 1 {} { sl@0: sl@0: sl@0: # asdf sl@0: set x sl@0: }" sl@0: invoked from within sl@0: "testevalex {for {} 1 {} { sl@0: sl@0: sl@0: # asdf sl@0: set x sl@0: }}"}} sl@0: test parse-9.2 {Tcl_LogCommandInfo, truncating long commands} { sl@0: list [testevalex {catch {set a b 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999 000000000 aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd eeeeeeeee fffffffff ggggggggg}}] $errorInfo sl@0: } {1 {wrong # args: should be "set varName ?newValue?" sl@0: while executing sl@0: "set a b 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999 000000000 aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd ee..."}} sl@0: sl@0: test parse-10.1 {Tcl_EvalTokens, simple text} { sl@0: testevalex {concat test} sl@0: } {test} sl@0: test parse-10.2 {Tcl_EvalTokens, backslash sequences} { sl@0: testevalex {concat test\063\062test} sl@0: } {test32test} sl@0: test parse-10.3 {Tcl_EvalTokens, nested commands} { sl@0: testevalex {concat [expr 2 + 6]} sl@0: } {8} sl@0: test parse-10.4 {Tcl_EvalTokens, nested commands} { sl@0: catch {unset a} sl@0: list [catch {testevalex {concat xxx[expr $a]}} msg] $msg sl@0: } {1 {can't read "a": no such variable}} sl@0: test parse-10.5 {Tcl_EvalTokens, simple variables} { sl@0: set a hello sl@0: testevalex {concat $a} sl@0: } {hello} sl@0: test parse-10.6 {Tcl_EvalTokens, array variables} { sl@0: catch {unset a} sl@0: set a(12) 46 sl@0: testevalex {concat $a(12)} sl@0: } {46} sl@0: test parse-10.7 {Tcl_EvalTokens, array variables} { sl@0: catch {unset a} sl@0: set a(12) 46 sl@0: testevalex {concat $a(1[expr 3 - 1])} sl@0: } {46} sl@0: test parse-10.8 {Tcl_EvalTokens, array variables} { sl@0: catch {unset a} sl@0: list [catch {testevalex {concat $x($a)}} msg] $msg sl@0: } {1 {can't read "a": no such variable}} sl@0: test parse-10.9 {Tcl_EvalTokens, array variables} { sl@0: catch {unset a} sl@0: list [catch {testevalex {concat xyz$a(1)}} msg] $msg sl@0: } {1 {can't read "a(1)": no such variable}} sl@0: test parse-10.10 {Tcl_EvalTokens, object values} { sl@0: set a 123 sl@0: testevalex {concat $a} sl@0: } {123} sl@0: test parse-10.11 {Tcl_EvalTokens, object values} { sl@0: set a 123 sl@0: testevalex {concat $a$a$a} sl@0: } {123123123} sl@0: test parse-10.12 {Tcl_EvalTokens, object values} { sl@0: testevalex {concat [expr 2][expr 4][expr 6]} sl@0: } {246} sl@0: test parse-10.13 {Tcl_EvalTokens, string values} { sl@0: testevalex {concat {a" b"}} sl@0: } {a" b"} sl@0: test parse-10.14 {Tcl_EvalTokens, string values} { sl@0: set a 111 sl@0: testevalex {concat x$a.$a.$a} sl@0: } {x111.111.111} sl@0: sl@0: test parse-11.1 {Tcl_EvalEx, TCL_EVAL_GLOBAL flag} { sl@0: proc x {} { sl@0: set y 777 sl@0: set z [testevalex "set y" global] sl@0: return [list $z $y] sl@0: } sl@0: catch {unset y} sl@0: set y 321 sl@0: x sl@0: } {321 777} sl@0: test parse-11.2 {Tcl_EvalEx, error while parsing} { sl@0: list [catch {testevalex {concat "abc}} msg] $msg sl@0: } {1 {missing "}} sl@0: test parse-11.3 {Tcl_EvalEx, error while collecting words} { sl@0: catch {unset a} sl@0: list [catch {testevalex {concat xyz $a}} msg] $msg sl@0: } {1 {can't read "a": no such variable}} sl@0: test parse-11.4 {Tcl_EvalEx, error in Tcl_EvalObjv call} { sl@0: catch {unset a} sl@0: list [catch {testevalex {_bogus_ a b c d}} msg] $msg sl@0: } {1 {invalid command name "_bogus_"}} sl@0: test parse-11.5 {Tcl_EvalEx, exceptional return} { sl@0: list [catch {testevalex {break}} msg] $msg sl@0: } {3 {}} sl@0: test parse-11.6 {Tcl_EvalEx, freeing memory} { sl@0: testevalex {concat a b c d e f g h i j k l m n o p q r s t u v w x y z} sl@0: } {a b c d e f g h i j k l m n o p q r s t u v w x y z} sl@0: test parse-11.7 {Tcl_EvalEx, multiple commands in script} { sl@0: list [testevalex {set a b; set c d}] $a $c sl@0: } {d b d} sl@0: test parse-11.8 {Tcl_EvalEx, multiple commands in script} { sl@0: list [testevalex { sl@0: set a b sl@0: set c d sl@0: }] $a $c sl@0: } {d b d} sl@0: test parse-11.9 {Tcl_EvalEx, freeing memory after error} { sl@0: catch {unset a} sl@0: list [catch {testevalex {concat a b c d e f g h i j k l m n o p q r s t u v w x y z $a}} msg] $msg sl@0: } {1 {can't read "a": no such variable}} sl@0: test parse-11.10 {Tcl_EvalTokens, empty commands} { sl@0: testevalex {concat xyz; } sl@0: } {xyz} sl@0: test parse-11.11 {Tcl_EvalTokens, empty commands} { sl@0: testevalex "concat abc; ; # this is a comment\n" sl@0: } {abc} sl@0: test parse-11.12 {Tcl_EvalTokens, empty commands} { sl@0: testevalex {} sl@0: } {} sl@0: sl@0: test parse-12.1 {Tcl_ParseVarName procedure, initialization} { sl@0: list [catch {testparsevarname {$a([first second])} 8 0} msg] $msg sl@0: } {1 {missing close-bracket}} sl@0: test parse-12.2 {Tcl_ParseVarName procedure, initialization} { sl@0: testparsevarname {$a([first second])} 0 0 sl@0: } {- {} 0 variable {$a([first second])} 2 text a 0 command {[first second]} 0 {}} sl@0: test parse-12.3 {Tcl_ParseVarName procedure, initialization} { sl@0: list [catch {testparsevarname {$abcd} 3 0} msg] $msg sl@0: } {0 {- {} 0 variable {$ab} 1 text ab 0 cd}} sl@0: test parse-12.4 {Tcl_ParseVarName procedure, initialization} { sl@0: testparsevarname {$abcd} 0 0 sl@0: } {- {} 0 variable {$abcd} 1 text abcd 0 {}} sl@0: test parse-12.5 {Tcl_ParseVarName procedure, just a dollar sign} { sl@0: testparsevarname {$abcd} 1 0 sl@0: } {- {} 0 text {$} 0 abcd} sl@0: test parse-12.6 {Tcl_ParseVarName procedure, braced variable name} { sl@0: testparser {${..[]b}cd} 0 sl@0: } {- {${..[]b}cd} 1 word {${..[]b}cd} 3 variable {${..[]b}} 1 text {..[]b} 0 text cd 0 {}} sl@0: test parse-12.7 {Tcl_ParseVarName procedure, braced variable name} { sl@0: testparser "\$\{\{\} " 0 sl@0: } {- \$\{\{\}\ 1 word \$\{\{\} 2 variable \$\{\{\} 1 text \{ 0 {}} sl@0: test parse-12.8 {Tcl_ParseVarName procedure, missing close brace} { sl@0: list [catch {testparser "$\{abc" 0} msg] $msg $errorInfo sl@0: } {1 {missing close-brace for variable name} missing\ close-brace\ for\ variable\ name\n\ \ \ \ (remainder\ of\ script:\ \"\{abc\")\n\ \ \ \ invoked\ from\ within\n\"testparser\ \"\$\\\{abc\"\ 0\"} sl@0: test parse-12.9 {Tcl_ParseVarName procedure, missing close brace} { sl@0: list [catch {testparsevarname {${bcd}} 4 0} msg] $msg sl@0: } {1 {missing close-brace for variable name}} sl@0: test parse-12.10 {Tcl_ParseVarName procedure, missing close brace} { sl@0: list [catch {testparsevarname {${bc}} 4 0} msg] $msg sl@0: } {1 {missing close-brace for variable name}} sl@0: test parse-12.11 {Tcl_ParseVarName procedure, simple variable name} { sl@0: testparser {$az_AZ.} 0 sl@0: } {- {$az_AZ.} 1 word {$az_AZ.} 3 variable {$az_AZ} 1 text az_AZ 0 text . 0 {}} sl@0: test parse-12.12 {Tcl_ParseVarName procedure, simple variable name} { sl@0: testparser {$abcdefg} 4 sl@0: } {- {$abc} 1 word {$abc} 2 variable {$abc} 1 text abc 0 defg} sl@0: test parse-12.13 {Tcl_ParseVarName procedure, simple variable name with ::} { sl@0: testparser {$xyz::ab:c} 0 sl@0: } {- {$xyz::ab:c} 1 word {$xyz::ab:c} 3 variable {$xyz::ab} 1 text xyz::ab 0 text :c 0 {}} sl@0: test parse-12.14 {Tcl_ParseVarName procedure, variable names with many colons} { sl@0: testparser {$xyz:::::c} 0 sl@0: } {- {$xyz:::::c} 1 word {$xyz:::::c} 2 variable {$xyz:::::c} 1 text xyz:::::c 0 {}} sl@0: test parse-12.15 {Tcl_ParseVarName procedure, : vs. ::} { sl@0: testparsevarname {$ab:cd} 0 0 sl@0: } {- {} 0 variable {$ab} 1 text ab 0 :cd} sl@0: test parse-12.16 {Tcl_ParseVarName procedure, eof in ::} { sl@0: testparsevarname {$ab::cd} 4 0 sl@0: } {- {} 0 variable {$ab} 1 text ab 0 ::cd} sl@0: test parse-12.17 {Tcl_ParseVarName procedure, eof in ::} { sl@0: testparsevarname {$ab:::cd} 5 0 sl@0: } {- {} 0 variable {$ab::} 1 text ab:: 0 :cd} sl@0: test parse-12.18 {Tcl_ParseVarName procedure, no variable name} { sl@0: testparser {$$ $.} 0 sl@0: } {- {$$ $.} 2 word {$$} 2 text {$} 0 text {$} 0 word {$.} 2 text {$} 0 text . 0 {}} sl@0: test parse-12.19 {Tcl_ParseVarName procedure, EOF before (} { sl@0: testparsevarname {$ab(cd)} 3 0 sl@0: } {- {} 0 variable {$ab} 1 text ab 0 (cd)} sl@0: test parse-12.20 {Tcl_ParseVarName procedure, array reference} { sl@0: testparser {$x(abc)} 0 sl@0: } {- {$x(abc)} 1 word {$x(abc)} 3 variable {$x(abc)} 2 text x 0 text abc 0 {}} sl@0: test parse-12.21 {Tcl_ParseVarName procedure, array reference} { sl@0: testparser {$x(ab$cde[foo bar])} 0 sl@0: } {- {$x(ab$cde[foo bar])} 1 word {$x(ab$cde[foo bar])} 6 variable {$x(ab$cde[foo bar])} 5 text x 0 text ab 0 variable {$cde} 1 text cde 0 command {[foo bar]} 0 {}} sl@0: test parse-12.22 {Tcl_ParseVarName procedure, array reference} { sl@0: testparser {$x([cmd arg]zz)} 0 sl@0: } {- {$x([cmd arg]zz)} 1 word {$x([cmd arg]zz)} 4 variable {$x([cmd arg]zz)} 3 text x 0 command {[cmd arg]} 0 text zz 0 {}} sl@0: test parse-12.23 {Tcl_ParseVarName procedure, missing close paren in array reference} { sl@0: list [catch {testparser {$x(poiu} 0} msg] $msg $errorInfo sl@0: } {1 {missing )} {missing ) sl@0: (remainder of script: "(poiu") sl@0: invoked from within sl@0: "testparser {$x(poiu} 0"}} sl@0: test parse-12.24 {Tcl_ParseVarName procedure, missing close paren in array reference} { sl@0: list [catch {testparsevarname {$ab(cd)} 6 0} msg] $msg $errorInfo sl@0: } {1 {missing )} {missing ) sl@0: (remainder of script: "(cd)") sl@0: invoked from within sl@0: "testparsevarname {$ab(cd)} 6 0"}} sl@0: test parse-12.25 {Tcl_ParseVarName procedure, nested array reference} { sl@0: testparser {$x(a$y(b$z))} 0 sl@0: } {- {$x(a$y(b$z))} 1 word {$x(a$y(b$z))} 8 variable {$x(a$y(b$z))} 7 text x 0 text a 0 variable {$y(b$z)} 4 text y 0 text b 0 variable {$z} 1 text z 0 {}} sl@0: sl@0: test parse-13.1 {Tcl_ParseVar procedure} { sl@0: set abc 24 sl@0: testparsevar {$abc.fg} sl@0: } {24 .fg} sl@0: test parse-13.2 {Tcl_ParseVar procedure, no variable name} { sl@0: testparsevar {$} sl@0: } {{$} {}} sl@0: test parse-13.3 {Tcl_ParseVar procedure, no variable name} { sl@0: testparsevar {$.123} sl@0: } {{$} .123} sl@0: test parse-13.4 {Tcl_ParseVar procedure, error looking up variable} { sl@0: catch {unset abc} sl@0: list [catch {testparsevar {$abc}} msg] $msg sl@0: } {1 {can't read "abc": no such variable}} sl@0: test parse-13.5 {Tcl_ParseVar procedure, error looking up variable} { sl@0: catch {unset abc} sl@0: list [catch {testparsevar {$abc([bogus x y z])}} msg] $msg sl@0: } {1 {invalid command name "bogus"}} sl@0: sl@0: test parse-14.1 {Tcl_ParseBraces procedure, computing string length} { sl@0: testparser [bytestring "foo\0 bar"] -1 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-14.2 {Tcl_ParseBraces procedure, computing string length} { sl@0: testparser "foo bar" -1 sl@0: } {- {foo bar} 2 simple foo 1 text foo 0 simple bar 1 text bar 0 {}} sl@0: test parse-14.3 {Tcl_ParseBraces procedure, words in braces} { sl@0: testparser {foo {a $b [concat foo]} {c d}} 0 sl@0: } {- {foo {a $b [concat foo]} {c d}} 3 simple foo 1 text foo 0 simple {{a $b [concat foo]}} 1 text {a $b [concat foo]} 0 simple {{c d}} 1 text {c d} 0 {}} sl@0: test parse-14.4 {Tcl_ParseBraces procedure, empty nested braces} { sl@0: testparser {foo {{}}} 0 sl@0: } {- {foo {{}}} 2 simple foo 1 text foo 0 simple {{{}}} 1 text {{}} 0 {}} sl@0: test parse-14.5 {Tcl_ParseBraces procedure, nested braces} { sl@0: testparser {foo {{a {b} c} {} {d e}}} 0 sl@0: } {- {foo {{a {b} c} {} {d e}}} 2 simple foo 1 text foo 0 simple {{{a {b} c} {} {d e}}} 1 text {{a {b} c} {} {d e}} 0 {}} sl@0: test parse-14.6 {Tcl_ParseBraces procedure, backslashes in words in braces} { sl@0: testparser "foo {a \\n\\\{}" 0 sl@0: } {- {foo {a \n\{}} 2 simple foo 1 text foo 0 simple {{a \n\{}} 1 text {a \n\{} 0 {}} sl@0: test parse-14.7 {Tcl_ParseBraces procedure, missing continuation line in braces} { sl@0: list [catch {testparser "\{abc\\\n" 0} msg] $msg $errorInfo sl@0: } {1 {missing close-brace} missing\ close-brace\n\ \ \ \ (remainder\ of\ script:\ \"\{abc\\\n\")\n\ \ \ \ invoked\ from\ within\n\"testparser\ \"\\\{abc\\\\\\n\"\ 0\"} sl@0: test parse-14.8 {Tcl_ParseBraces procedure, backslash-newline in braces} { sl@0: testparser "foo {\\\nx}" 0 sl@0: } {- foo\ \{\\\nx\} 2 simple foo 1 text foo 0 word \{\\\nx\} 2 backslash \\\n 0 text x 0 {}} sl@0: test parse-14.9 {Tcl_ParseBraces procedure, backslash-newline in braces} { sl@0: testparser "foo {a \\\n b}" 0 sl@0: } {- foo\ \{a\ \\\n\ \ \ b\} 2 simple foo 1 text foo 0 word \{a\ \\\n\ \ \ b\} 3 text {a } 0 backslash \\\n\ \ \ 0 text b 0 {}} sl@0: test parse-14.10 {Tcl_ParseBraces procedure, backslash-newline in braces} { sl@0: testparser "foo {xyz\\\n }" 0 sl@0: } {- foo\ \{xyz\\\n\ \} 2 simple foo 1 text foo 0 word \{xyz\\\n\ \} 2 text xyz 0 backslash \\\n\ 0 {}} sl@0: test parse-14.11 {Tcl_ParseBraces procedure, empty braced string} { sl@0: testparser {foo {}} 0 sl@0: } {- {foo {}} 2 simple foo 1 text foo 0 simple {{}} 1 text {} 0 {}} sl@0: test parse-14.12 {Tcl_ParseBraces procedure, missing close brace} { sl@0: list [catch {testparser "foo \{xy\\\nz" 0} msg] $msg $errorInfo sl@0: } {1 {missing close-brace} missing\ close-brace\n\ \ \ \ (remainder\ of\ script:\ \"\{xy\\\nz\")\n\ \ \ \ invoked\ from\ within\n\"testparser\ \"foo\ \\\{xy\\\\\\nz\"\ 0\"} sl@0: sl@0: test parse-15.1 {Tcl_ParseQuotedString procedure, computing string length} { sl@0: testparser [bytestring "foo\0 bar"] -1 sl@0: } {- foo 1 simple foo 1 text foo 0 {}} sl@0: test parse-15.2 {Tcl_ParseQuotedString procedure, computing string length} { sl@0: testparser "foo bar" -1 sl@0: } {- {foo bar} 2 simple foo 1 text foo 0 simple bar 1 text bar 0 {}} sl@0: test parse-15.3 {Tcl_ParseQuotedString procedure, word is quoted string} { sl@0: testparser {foo "a b c" d "efg";} 0 sl@0: } {- {foo "a b c" d "efg";} 4 simple foo 1 text foo 0 simple {"a b c"} 1 text {a b c} 0 simple d 1 text d 0 simple {"efg"} 1 text efg 0 {}} sl@0: test parse-15.4 {Tcl_ParseQuotedString procedure, garbage after quoted string} { sl@0: list [catch {testparser {foo "a b c"d} 0} msg] $msg $errorInfo sl@0: } {1 {extra characters after close-quote} {extra characters after close-quote sl@0: (remainder of script: "d") sl@0: invoked from within sl@0: "testparser {foo "a b c"d} 0"}} sl@0: sl@0: test parse-15.5 {CommandComplete procedure} { sl@0: info complete "" sl@0: } 1 sl@0: test parse-15.6 {CommandComplete procedure} { sl@0: info complete " \n" sl@0: } 1 sl@0: test parse-15.7 {CommandComplete procedure} { sl@0: info complete "abc def" sl@0: } 1 sl@0: test parse-15.8 {CommandComplete procedure} { sl@0: info complete "a b c d e f \t\n" sl@0: } 1 sl@0: test parse-15.9 {CommandComplete procedure} { sl@0: info complete {a b c"d} sl@0: } 1 sl@0: test parse-15.10 {CommandComplete procedure} { sl@0: info complete {a b "c d" e} sl@0: } 1 sl@0: test parse-15.11 {CommandComplete procedure} { sl@0: info complete {a b "c d"} sl@0: } 1 sl@0: test parse-15.12 {CommandComplete procedure} { sl@0: info complete {a b "c d"} sl@0: } 1 sl@0: test parse-15.13 {CommandComplete procedure} { sl@0: info complete {a b "c d} sl@0: } 0 sl@0: test parse-15.14 {CommandComplete procedure} { sl@0: info complete {a b "} sl@0: } 0 sl@0: test parse-15.15 {CommandComplete procedure} { sl@0: info complete {a b "cd"xyz} sl@0: } 1 sl@0: test parse-15.16 {CommandComplete procedure} { sl@0: info complete {a b "c $d() d"} sl@0: } 1 sl@0: test parse-15.17 {CommandComplete procedure} { sl@0: info complete {a b "c $dd("} sl@0: } 0 sl@0: test parse-15.18 {CommandComplete procedure} { sl@0: info complete {a b "c \"} sl@0: } 0 sl@0: test parse-15.19 {CommandComplete procedure} { sl@0: info complete {a b "c [d e f]"} sl@0: } 1 sl@0: test parse-15.20 {CommandComplete procedure} { sl@0: info complete {a b "c [d e f] g"} sl@0: } 1 sl@0: test parse-15.21 {CommandComplete procedure} { sl@0: info complete {a b "c [d e f"} sl@0: } 0 sl@0: test parse-15.22 {CommandComplete procedure} { sl@0: info complete {a {b c d} e} sl@0: } 1 sl@0: test parse-15.23 {CommandComplete procedure} { sl@0: info complete {a {b c d}} sl@0: } 1 sl@0: test parse-15.24 {CommandComplete procedure} { sl@0: info complete "a b\{c d" sl@0: } 1 sl@0: test parse-15.25 {CommandComplete procedure} { sl@0: info complete "a b \{c" sl@0: } 0 sl@0: test parse-15.26 {CommandComplete procedure} { sl@0: info complete "a b \{c{ }" sl@0: } 0 sl@0: test parse-15.27 {CommandComplete procedure} { sl@0: info complete "a b {c d e}xxx" sl@0: } 1 sl@0: test parse-15.28 {CommandComplete procedure} { sl@0: info complete "a b {c \\\{d e}xxx" sl@0: } 1 sl@0: test parse-15.29 {CommandComplete procedure} { sl@0: info complete {a b [ab cd ef]} sl@0: } 1 sl@0: test parse-15.30 {CommandComplete procedure} { sl@0: info complete {a b x[ab][cd][ef] gh} sl@0: } 1 sl@0: test parse-15.31 {CommandComplete procedure} { sl@0: info complete {a b x[ab][cd[ef] gh} sl@0: } 0 sl@0: test parse-15.32 {CommandComplete procedure} { sl@0: info complete {a b x[ gh} sl@0: } 0 sl@0: test parse-15.33 {CommandComplete procedure} { sl@0: info complete {[]]]} sl@0: } 1 sl@0: test parse-15.34 {CommandComplete procedure} { sl@0: info complete {abc x$yyy} sl@0: } 1 sl@0: test parse-15.35 {CommandComplete procedure} { sl@0: info complete "abc x\${abc\[\\d} xyz" sl@0: } 1 sl@0: test parse-15.36 {CommandComplete procedure} { sl@0: info complete "abc x\$\{ xyz" sl@0: } 0 sl@0: test parse-15.37 {CommandComplete procedure} { sl@0: info complete {word $a(xyz)} sl@0: } 1 sl@0: test parse-15.38 {CommandComplete procedure} { sl@0: info complete {word $a(} sl@0: } 0 sl@0: test parse-15.39 {CommandComplete procedure} { sl@0: info complete "set a \\\n" sl@0: } 0 sl@0: test parse-15.40 {CommandComplete procedure} { sl@0: info complete "set a \\\\\n" sl@0: } 1 sl@0: test parse-15.41 {CommandComplete procedure} { sl@0: info complete "set a \\n " sl@0: } 1 sl@0: test parse-15.42 {CommandComplete procedure} { sl@0: info complete "set a \\" sl@0: } 1 sl@0: test parse-15.43 {CommandComplete procedure} { sl@0: info complete "foo \\\n\{" sl@0: } 0 sl@0: test parse-15.44 {CommandComplete procedure} { sl@0: info complete "a\nb\n# \{\n# \{\nc\n" sl@0: } 1 sl@0: test parse-15.45 {CommandComplete procedure} { sl@0: info complete "#Incomplete comment\\\n" sl@0: } 0 sl@0: test parse-15.46 {CommandComplete procedure} { sl@0: info complete "#Incomplete comment\\\nBut now it's complete.\n" sl@0: } 1 sl@0: test parse-15.47 {CommandComplete procedure} { sl@0: info complete "# Complete comment\\\\\n" sl@0: } 1 sl@0: test parse-15.48 {CommandComplete procedure} { sl@0: info complete "abc\\\n def" sl@0: } 1 sl@0: test parse-15.49 {CommandComplete procedure} { sl@0: info complete "abc\\\n " sl@0: } 1 sl@0: test parse-15.50 {CommandComplete procedure} { sl@0: info complete "abc\\\n" sl@0: } 0 sl@0: test parse-15.51 {CommandComplete procedure} " sl@0: info complete \"\\{abc\\}\\{\" sl@0: " 1 sl@0: test parse-15.52 {CommandComplete procedure} { sl@0: info complete "\"abc\"(" sl@0: } 1 sl@0: test parse-15.53 {CommandComplete procedure} " sl@0: info complete \" # {\" sl@0: " 1 sl@0: test parse-15.54 {CommandComplete procedure} " sl@0: info complete \"foo bar;# {\" sl@0: " 1 sl@0: test parse-15.55 {CommandComplete procedure} { sl@0: info complete "set x [bytestring \0]; puts hi" sl@0: } 1 sl@0: test parse-15.56 {CommandComplete procedure} { sl@0: info complete "set x [bytestring \0]; \{" sl@0: } 0 sl@0: test parse-15.57 {CommandComplete procedure} { sl@0: info complete "# Comment should be complete command" sl@0: } 1 sl@0: test parse-15.58 {CommandComplete procedure, memory leaks} { sl@0: info complete "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22" sl@0: } 1 sl@0: test parse-15.59 {CommandComplete procedure} { sl@0: # Test for Tcl Bug 684744 sl@0: info complete [encoding convertfrom identity "\x00;if 1 \{"] sl@0: } 0 sl@0: sl@0: test parse-16.1 {Tcl_EvalEx, check termOffset is set correctly for non TCL_OK cases, bug 2535} { sl@0: subst {[eval {return foo}]bar} sl@0: } foobar sl@0: sl@0: test parse-17.1 {Correct return codes from errors during substitution} { sl@0: catch {eval {w[continue]}} sl@0: } 4 sl@0: sl@0: test parse-19.1 {Bug 1115904: recursion limit in Tcl_EvalEx} -constraints { sl@0: testevalex sl@0: } -setup { sl@0: interp create i sl@0: load {} Tcltest i sl@0: i eval {proc {} args {}} sl@0: interp recursionlimit i 3 sl@0: } -body { sl@0: i eval {testevalex {[]}} sl@0: } -cleanup { sl@0: interp delete i sl@0: } sl@0: sl@0: test parse-19.2 {Bug 1115904: recursion limit in Tcl_EvalEx} -constraints { sl@0: testevalex sl@0: } -setup { sl@0: interp create i sl@0: load {} Tcltest i sl@0: i eval {proc {} args {}} sl@0: interp recursionlimit i 3 sl@0: } -body { sl@0: i eval {testevalex {[[]]}} sl@0: } -cleanup { sl@0: interp delete i sl@0: } -returnCodes error -match glob -result {too many nested*} sl@0: sl@0: test parse-19.3 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { sl@0: interp create i sl@0: i eval {proc {} args {}} sl@0: interp recursionlimit i 3 sl@0: } -body { sl@0: i eval {subst {[]}} sl@0: } -cleanup { sl@0: interp delete i sl@0: } sl@0: sl@0: test parse-19.4 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { sl@0: interp create i sl@0: i eval {proc {} args {}} sl@0: interp recursionlimit i 3 sl@0: } -body { sl@0: i eval {subst {[[]]}} sl@0: } -cleanup { sl@0: interp delete i sl@0: } -returnCodes error -match glob -result {too many nested*} sl@0: sl@0: # cleanup sl@0: catch {unset a} sl@0: ::tcltest::cleanupTests sl@0: return