diff options
author | Kevin B Kenny <kennykb@acm.org> | 2010-10-01 13:20:45 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2010-10-01 13:20:45 (GMT) |
commit | e4330954164421336f3ea7141c105f8af0281e88 (patch) | |
tree | 3d0ace9350a17ec3422638bdb0934c18df143f09 /tests | |
parent | c29a16c4c113cb6b5d276e3900b0a3ab3bec6fbc (diff) | |
download | tcl-e4330954164421336f3ea7141c105f8af0281e88.zip tcl-e4330954164421336f3ea7141c105f8af0281e88.tar.gz tcl-e4330954164421336f3ea7141c105f8af0281e88.tar.bz2 |
Added listIn, listNotIn, and dictGet.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/assemble.test | 97 |
1 files changed, 88 insertions, 9 deletions
diff --git a/tests/assemble.test b/tests/assemble.test index bff1a84..e901e38 100644 --- a/tests/assemble.test +++ b/tests/assemble.test @@ -787,15 +787,7 @@ test assemble-7.39 {tryCvtToNumeric} { } -result 42 } -test assemble-7.43 {tryCvtToNumeric} { - -body { - assemble { - push NaN; tryCvtToNumeric - } - } - -returnCodes error - -result {domain error: argument not in valid range} -} + test assemble-7.41 {uminus} { -body { assemble { @@ -823,6 +815,34 @@ test assemble-7.43 {uplus} { -result {can't use non-numeric floating-point value as operand of "+"} } +test assemble-7.43 {tryCvtToNumeric} { + -body { + assemble { + push NaN; tryCvtToNumeric + } + } + -returnCodes error + -result {domain error: argument not in valid range} +} + +test assemble-7.44 {listIn} { + -body { + assemble { + push b; push {a b c}; listIn + } + } + -result 1 +} + +test assemble-7.45 {listNotIn} { + -body { + assemble { + push d; push {a b c}; listNotIn + } + } + -result 1 +} + # assemble-8 ASSEM_LVT and FindLocalVar test assemble-8.1 {load, wrong # args} { @@ -2563,6 +2583,65 @@ test assemble-24.12 {unsetArray} { -cleanup {rename x {}} } +# assemble-25 - dict get + +test assemble-25.1 {dict get - wrong # args} { + -body { + assemble {dictGet} + } + -returnCodes error + -match glob + -result {wrong # args*} +} + +test assemble-25.2 {dict get - wrong # args} { + -body { + assemble {dictGet too many} + } + -returnCodes error + -match glob + -result {wrong # args*} +} + +test assemble-25.3 {dictGet - bad subst} { + -body { + assemble {dictGet $foo} + } + -returnCodes error + -match glob + -result {assembly code may not contain substitutions} +} + +test assemble-25.4 {dict get - not a number} { + -body { + proc x {} { + assemble {dictGet rubbish} + } + x + } + -returnCodes error + -result {expected integer but got "rubbish"} + -cleanup {rename x {}} +} + +test assemble-25.5 {dictGet - negative operand count} { + -body { + proc x {} { + assemble {dictGet 0} + } + list [catch x result] $result $::errorCode + } + -result {1 {operand must be positive} {TCL ASSEM POSITIVE}} + -cleanup {rename x {}; unset result} +} + +test assemble-25.6 {dictGet - 1 index} { + -body { + assemble {push {a 1 b 2}; push a; dictGet 1} + } + -result 1 +} + test assemble-30.1 {unbalanced stack} { -body { list \ |