diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-13 09:13:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-13 09:13:58 (GMT) |
commit | f23820c00b1bede53a938764c7d231434d60f15d (patch) | |
tree | 80874c70932b5992a16450709e9f4e3f5bc94cf8 | |
parent | 87508b74e0b2d6107e965261b582f9a0653d8160 (diff) | |
download | tcl-f23820c00b1bede53a938764c7d231434d60f15d.zip tcl-f23820c00b1bede53a938764c7d231434d60f15d.tar.gz tcl-f23820c00b1bede53a938764c7d231434d60f15d.tar.bz2 |
Missing ::tcltest::loadTestedCommands
-rw-r--r-- | tests/append.test | 1 | ||||
-rw-r--r-- | tests/binary.test | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/append.test b/tests/append.test index 242b1a2..0708fc5 100644 --- a/tests/append.test +++ b/tests/append.test @@ -15,6 +15,7 @@ if {"::tcltest" ni [namespace children]} { package require tcltest 2.5 namespace import -force ::tcltest::* } +::tcltest::loadTestedCommands unset -nocomplain x test append-1.1 {append command} { diff --git a/tests/binary.test b/tests/binary.test index 36e31ce..6cd209d 100644 --- a/tests/binary.test +++ b/tests/binary.test @@ -14,6 +14,8 @@ if {"::tcltest" ni [namespace children]} { package require tcltest 2.5 namespace import -force ::tcltest::* } +::tcltest::loadTestedCommands + testConstraint bigEndian [expr {$tcl_platform(byteOrder) eq "bigEndian"}] testConstraint littleEndian [expr {$tcl_platform(byteOrder) eq "littleEndian"}] testConstraint testbytestring [llength [info commands testbytestring]] |