summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-04-07 00:49:19 (GMT)
committerstanton <stanton@noemail.net>1999-04-07 00:49:19 (GMT)
commit7ce5dd7813d20412ea4bdb14f69110dab77c2aa7 (patch)
treeeb2951e0931a2bde69ac86af47be19039b37de54
parent6c0df2d96c9bd6a672ce21b77aa4691934282e95 (diff)
downloadtk-7ce5dd7813d20412ea4bdb14f69110dab77c2aa7.zip
tk-7ce5dd7813d20412ea4bdb14f69110dab77c2aa7.tar.gz
tk-7ce5dd7813d20412ea4bdb14f69110dab77c2aa7.tar.bz2
* tests/winfo.test: Enabled tests that previously failed.
FossilOrigin-Name: e6143800f8096b42ed6ccbd3b8ff2d80b02eaae6
-rw-r--r--tests/winfo.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/winfo.test b/tests/winfo.test
index 8c85ca5..251a2fc 100644
--- a/tests/winfo.test
+++ b/tests/winfo.test
@@ -6,7 +6,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: winfo.test,v 1.1.4.6 1999/04/02 18:06:46 hershey Exp $
+# RCS: @(#) $Id: winfo.test,v 1.1.4.7 1999/04/07 00:49:19 stanton Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
@@ -315,7 +315,7 @@ proc MakeEmbed {} {
pack .emb.b -expand yes -fill both
update
}
-test winfo-13.1 {root coordinates of embedded toplevel} {winCrash} {
+test winfo-13.1 {root coordinates of embedded toplevel} {
MakeEmbed
set z [expr [winfo rootx .emb] == [winfo rootx .con] && \
[winfo rooty .emb] == [winfo rooty .con]]
@@ -323,7 +323,7 @@ test winfo-13.1 {root coordinates of embedded toplevel} {winCrash} {
destroy .con
set z
} {1}
-test winfo-13.2 {destroying embedded toplevel} {winCrash} {
+test winfo-13.2 {destroying embedded toplevel} {
destroy .emb
update
expr [winfo exists .emb.b] || [winfo exists .con]
@@ -333,7 +333,7 @@ foreach i [winfo children .] {
destroy $i
}
-test winfo-13.3 {destroying container window} {winCrash} {
+test winfo-13.3 {destroying container window} {
MakeEmbed
destroy .con
update
@@ -347,7 +347,7 @@ foreach i [winfo children .] {
destroy $i
}
-test winfo-13.4 {[winfo containing] with embedded windows} {winCrash} {
+test winfo-13.4 {[winfo containing] with embedded windows} {
MakeEmbed
button .b
pack .b -expand yes -fill both