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