diff options
Diffstat (limited to 'tests/dcall.test')
| -rw-r--r-- | tests/dcall.test | 44 |
1 files changed, 13 insertions, 31 deletions
diff --git a/tests/dcall.test b/tests/dcall.test index 83aaba1..41dd777 100644 --- a/tests/dcall.test +++ b/tests/dcall.test @@ -10,52 +10,34 @@ # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. -# -# RCS: @(#) $Id: dcall.test,v 1.5 2000/04/10 17:18:58 ericm Exp $ -if {[lsearch [namespace children] ::tcltest] == -1} { - package require tcltest - namespace import -force ::tcltest::* -} +package require tcltest 2 +namespace import ::tcltest::* + +::tcltest::loadTestedCommands +catch [list package require -exact Tcltest [info patchlevel]] -if {[info commands testdcall] == {}} { - puts "This application hasn't been compiled with the \"testdcall\"" - puts "command, so I can't test Tcl_CallWhenDeleted." - ::tcltest::cleanupTests - return -} +testConstraint testdcall [llength [info commands testdcall]] -test dcall-1.1 {deletion callbacks} { +test dcall-1.1 {deletion callbacks} testdcall { lsort -increasing [testdcall 1 2 3] } {1 2 3} -test dcall-1.2 {deletion callbacks} { +test dcall-1.2 {deletion callbacks} testdcall { testdcall } {} -test dcall-1.3 {deletion callbacks} { +test dcall-1.3 {deletion callbacks} testdcall { lsort -increasing [testdcall 20 21 22 -22] } {20 21} -test dcall-1.4 {deletion callbacks} { +test dcall-1.4 {deletion callbacks} testdcall { lsort -increasing [testdcall 20 21 22 -20] } {21 22} -test dcall-1.5 {deletion callbacks} { +test dcall-1.5 {deletion callbacks} testdcall { lsort -increasing [testdcall 20 21 22 -21] } {20 22} -test dcall-1.6 {deletion callbacks} { +test dcall-1.6 {deletion callbacks} testdcall { lsort -increasing [testdcall 20 21 22 -21 -22 -20] } {} # cleanup -::tcltest::cleanupTests +cleanupTests return - - - - - - - - - - - - |
