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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test out various known bugs that will
  2. # cause Tk to crash.  This file ends with .tcl instead of .test to make
  3. # sure it isn't run when you type "source all".  We currently are not 
  4. # shipping this file with the rest of the source release.
  5. #
  6. # Copyright (c) 1996 Sun Microsystems, Inc.
  7. #
  8. # See the file "license.terms" for information on usage and redistribution
  9. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10. #
  11. # RCS: @(#) $Id: bugs.tcl,v 1.3 1999/04/16 01:51:34 stanton Exp $
  12. if {[info procs test] != "test"} {
  13.     source defs
  14. }
  15. test crash-1.0 {imgPhoto} {
  16.     image create photo p1
  17.     image create photo p2
  18.     catch {image create photo p2 -file bogus}
  19.     p1 copy p2
  20.     label .l -image p1
  21.     destroy .l
  22.     set foo ""
  23. } {}
  24. test crash-1.1 {color} {
  25.     . configure -bg rgb:345
  26.     set foo ""
  27. } {}