dcall.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  none
  2. #
  3. # This file contains a collection of tests for Tcl_CallWhenDeleted.
  4. # Sourcing this file into Tcl runs the tests and generates output for
  5. # errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1993 The Regents of the University of California.
  8. # Copyright (c) 1994 Sun Microsystems, Inc.
  9. # Copyright (c) 1998-1999 by Scriptics Corporation.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: dcall.test,v 1.5 2000/04/10 17:18:58 ericm Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. if {[info commands testdcall] == {}} {
  20.     puts "This application hasn't been compiled with the "testdcall""
  21.     puts "command, so I can't test Tcl_CallWhenDeleted."
  22.     ::tcltest::cleanupTests
  23.     return
  24. }
  25. test dcall-1.1 {deletion callbacks} {
  26.     lsort -increasing [testdcall 1 2 3]
  27. } {1 2 3}
  28. test dcall-1.2 {deletion callbacks} {
  29.     testdcall
  30. } {}
  31. test dcall-1.3 {deletion callbacks} {
  32.     lsort -increasing [testdcall 20 21 22 -22]
  33. } {20 21}
  34. test dcall-1.4 {deletion callbacks} {
  35.     lsort -increasing [testdcall 20 21 22 -20]
  36. } {21 22}
  37. test dcall-1.5 {deletion callbacks} {
  38.     lsort -increasing [testdcall 20 21 22 -21]
  39. } {20 22}
  40. test dcall-1.6 {deletion callbacks} {
  41.     lsort -increasing [testdcall 20 21 22 -21 -22 -20]
  42. } {}
  43. # cleanup
  44. ::tcltest::cleanupTests
  45. return