Import Tcl-code 8.6.8
This commit is contained in:
@@ -89,6 +89,90 @@ test link-2.5 {writing bad values into variables} -setup {
|
||||
testlink create 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
list [catch {set wide gorp} msg] $msg $bool
|
||||
} -result {1 {can't set "wide": variable must have integer value} 1}
|
||||
test link-2.6 {writing C variables from Tcl} -constraints {testlink} -setup {
|
||||
testlink delete
|
||||
} -body {
|
||||
testlink set 43 1.21 4 - 56785678 64 250 30000 60000 0xbaadbeef 12321 32123 3.25 1231231234
|
||||
testlink create 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
set int "+"
|
||||
set real "+"
|
||||
set bool 1
|
||||
set string "+"
|
||||
set wide "+"
|
||||
set char "+"
|
||||
set uchar "+"
|
||||
set short "+"
|
||||
set ushort "+"
|
||||
set uint "+"
|
||||
set long "+"
|
||||
set ulong "+"
|
||||
set float "+"
|
||||
set uwide "+"
|
||||
concat [testlink get] | $int $real $bool $string $wide $char $uchar $short $ushort $uint $long $ulong $float $uwide
|
||||
} -result {1 1.0 1 + 1 1 1 1 1 1 1 1 1.0 1 | + + 1 + + + + + + + + + + +}
|
||||
test link-2.7 {writing C variables from Tcl} -constraints {testlink} -setup {
|
||||
testlink delete
|
||||
} -body {
|
||||
testlink set 43 1.21 4 - 56785678 64 250 30000 60000 0xbaadbeef 12321 32123 3.25 1231231234
|
||||
testlink create 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
set int "-"
|
||||
set real "-"
|
||||
set bool 0
|
||||
set string "-"
|
||||
set wide "-"
|
||||
set char "-"
|
||||
set uchar "-"
|
||||
set short "-"
|
||||
set ushort "-"
|
||||
set uint "-"
|
||||
set long "-"
|
||||
set ulong "-"
|
||||
set float "-"
|
||||
set uwide "-"
|
||||
concat [testlink get] | $int $real $bool $string $wide $char $uchar $short $ushort $uint $long $ulong $float $uwide
|
||||
} -result {0 0.0 0 - 0 0 0 0 0 0 0 0 0.0 0 | - - 0 - - - - - - - - - - -}
|
||||
test link-2.8 {writing C variables from Tcl} -constraints {testlink} -setup {
|
||||
testlink delete
|
||||
} -body {
|
||||
testlink set 43 1.21 4 - 56785678 64 250 30000 60000 0xbaadbeef 12321 32123 3.25 1231231234
|
||||
testlink create 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
set int "0x"
|
||||
set real "0b"
|
||||
set bool 0
|
||||
set string "0"
|
||||
set wide "0O"
|
||||
set char "0X"
|
||||
set uchar "0B"
|
||||
set short "0O"
|
||||
set ushort "0x"
|
||||
set uint "0b"
|
||||
set long "0o"
|
||||
set ulong "0X"
|
||||
set float "0B"
|
||||
set uwide "0O"
|
||||
concat [testlink get] | $int $real $bool $string $wide $char $uchar $short $ushort $uint $long $ulong $float $uwide
|
||||
} -result {0 0.0 0 0 0 0 0 0 0 0 0 0 0.0 0 | 0x 0b 0 0 0O 0X 0B 0O 0x 0b 0o 0X 0B 0O}
|
||||
test link-2.9 {writing C variables from Tcl} -constraints {testlink} -setup {
|
||||
testlink delete
|
||||
} -body {
|
||||
testlink set 43 1.21 4 - 56785678 64 250 30000 60000 0xbaadbeef 12321 32123 3.25 1231231234
|
||||
testlink create 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
set int 0
|
||||
set real 5000e
|
||||
set bool 0
|
||||
set string 0
|
||||
set wide 0
|
||||
set char 0
|
||||
set uchar 0
|
||||
set short 0
|
||||
set ushort 0
|
||||
set uint 0
|
||||
set long 0
|
||||
set ulong 0
|
||||
set float -60.00e+
|
||||
set uwide 0
|
||||
concat [testlink get] | $int $real $bool $string $wide $char $uchar $short $ushort $uint $long $ulong $float $uwide
|
||||
} -result {0 5000.0 0 0 0 0 0 0 0 0 0 0 -60.0 0 | 0 5000e 0 0 0 0 0 0 0 0 0 0 -60.00e+ 0}
|
||||
|
||||
test link-3.1 {read-only variables} -constraints {testlink} -setup {
|
||||
testlink delete
|
||||
|
||||
Reference in New Issue
Block a user