summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@noemail.net>2004-06-06 11:28:13 (GMT)
committerpatthoyts <patthoyts@noemail.net>2004-06-06 11:28:13 (GMT)
commit115f716937c102c8f7dd18c4550e43c1632c2c8f (patch)
treed2f35138ea70cadaa4597513ef9e217b990b561f /tests
parentfee8663114e95ec82a214fed0d0dda8c25c5ccd7 (diff)
downloadtk-115f716937c102c8f7dd18c4550e43c1632c2c8f.zip
tk-115f716937c102c8f7dd18c4550e43c1632c2c8f.tar.gz
tk-115f716937c102c8f7dd18c4550e43c1632c2c8f.tar.bz2
Fix frame-2.8 for ![info exists env(DISPLAY)]
FossilOrigin-Name: a897ea1c670a7b84854a476dfbf968c673c63a17
Diffstat (limited to 'tests')
-rw-r--r--tests/frame.test9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/frame.test b/tests/frame.test
index 96ce0a4..75e77c8 100644
--- a/tests/frame.test
+++ b/tests/frame.test
@@ -7,7 +7,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: frame.test,v 1.11 2004/06/04 19:55:31 dgp Exp $
+# RCS: @(#) $Id: frame.test,v 1.12 2004/06/06 11:28:14 patthoyts Exp $
package require tcltest 2.1
eval tcltest::configure $argv
@@ -187,9 +187,10 @@ test frame-2.8 {toplevel configuration options} haveDISPLAY {
catch {destroy .t}
toplevel .t -width 200 -height 100 -screen $env(DISPLAY)
wm geometry .t +0+0
- list [.t configure -screen] \
- [catch {.t configure -screen another} msg] $msg
-} [list [list -screen screen Screen {} $env(DISPLAY)] 1 {can't modify -screen option after widget is created}]
+ set cfg [string compare [.t configure -screen] \
+ "-screen screen Screen {} $env(DISPLAY)"]
+ list $cfg [catch {.t configure -screen another} msg] $msg
+} {0 1 {can't modify -screen option after widget is created}}
test frame-2.9 {toplevel configuration options} {
catch {destroy .t}
list [catch {toplevel .t -width 200 -height 100 -screen bogus} msg] $msg