diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-11-29 16:05:33 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-11-29 16:05:33 (GMT) |
commit | 6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16 (patch) | |
tree | 1213b14637736aa3f29ae39c21314720c8ceaf21 /tests | |
parent | 11af978f519524d92ce53cc5fbed1d3512ce08cb (diff) | |
download | tcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.zip tcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.tar.gz tcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.tar.bz2 |
make Windows dde (-> 1.4.5) and registry (-> 1.3.7) extensions ready for the Tcl 9.0 era.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/registry.test | 4 | ||||
-rw-r--r-- | tests/winDde.test | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/registry.test b/tests/registry.test index 4fc96bf..2f1fd8c 100644 --- a/tests/registry.test +++ b/tests/registry.test @@ -19,7 +19,7 @@ testConstraint reg 0 if {[testConstraint win]} { if {![catch { ::tcltest::loadTestedCommands - set ::regver [package require registry 1.3.6] + set ::regver [package require registry 1.3.7] }]} { testConstraint reg 1 } @@ -34,7 +34,7 @@ testConstraint english [expr { test registry-1.0 {check if we are testing the right dll} {win reg} { set ::regver -} {1.3.6} +} {1.3.7} test registry-1.1 {argument parsing for registry command} {win reg} { list [catch {registry} msg] $msg } {1 {wrong # args: should be "registry ?-32bit|-64bit? option ?arg ...?"}} diff --git a/tests/winDde.test b/tests/winDde.test index c56d27d..14308c7 100644 --- a/tests/winDde.test +++ b/tests/winDde.test @@ -19,7 +19,7 @@ testConstraint dde 0 if {[testConstraint win]} { if {![catch { ::tcltest::loadTestedCommands - set ::ddever [package require dde 1.4.4] + set ::ddever [package require dde 1.4.5] set ::ddelib [info loaded {} Dde]}]} { testConstraint dde 1 } @@ -105,7 +105,7 @@ proc createChildProcess {ddeServerName args} { # ------------------------------------------------------------------------- test winDde-1.0 {check if we are testing the right dll} {win dde} { set ::ddever -} {1.4.4} +} {1.4.5} test winDde-1.1 {Settings the server's topic name} -constraints dde -body { list [dde servername foobar] [dde servername] [dde servername self] |