diff options
author | rjohnson <rjohnson> | 1998-04-01 09:51:44 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-04-01 09:51:44 (GMT) |
commit | 066ea7fd88d49cb456f74da71dbe875e4fc0aabb (patch) | |
tree | 8fb30cb152c4dc191be47fa043d2e6f5ea38c7ba /tests/bugs.tcl | |
parent | 13242623d2ff3ea02ab6a62bfb48a7dbb5c27e22 (diff) | |
download | tk-066ea7fd88d49cb456f74da71dbe875e4fc0aabb.zip tk-066ea7fd88d49cb456f74da71dbe875e4fc0aabb.tar.gz tk-066ea7fd88d49cb456f74da71dbe875e4fc0aabb.tar.bz2 |
Initial revision
Diffstat (limited to 'tests/bugs.tcl')
-rw-r--r-- | tests/bugs.tcl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/bugs.tcl b/tests/bugs.tcl new file mode 100644 index 0000000..1f4e5b7 --- /dev/null +++ b/tests/bugs.tcl @@ -0,0 +1,30 @@ +# This file is a Tcl script to test out various known bugs that will +# cause Tk to crash. This file ends with .tcl instead of .test to make +# sure it isn't run when you type "source all". We currently are not +# shipping this file with the rest of the source release. +# +# Copyright (c) 1996 Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. +# +# SCCS: @(#) bugs.tcl 1.1 96/07/25 15:49:45 + +if {[info procs test] != "test"} { + source defs +} + +test crash-1.0 {imgPhoto} { + image create photo p1 + image create photo p2 + catch {image create photo p2 -file bogus} + p1 copy p2 + label .l -image p1 + destroy .l + set foo "" +} {} + +test crash-1.1 {color} { + . configure -bg rgb:345 + set foo "" +} {} |