diff options
author | dgp <dgp@users.sourceforge.net> | 2002-07-15 18:10:47 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-07-15 18:10:47 (GMT) |
commit | 6a4bb63af49f9a76f2105283400453b6dfdf0d18 (patch) | |
tree | bc705a35827a6b869cdefe8bc080d728edc119fc | |
parent | 043de52c9870236b12bc1231eccf35e61b22558c (diff) | |
download | tk-6a4bb63af49f9a76f2105283400453b6dfdf0d18.zip tk-6a4bb63af49f9a76f2105283400453b6dfdf0d18.tar.gz tk-6a4bb63af49f9a76f2105283400453b6dfdf0d18.tar.bz2 |
* Some tests needed "unix" constraint.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | tests/unixWm.test | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ 2002-07-15 Don Porter <dgp@users.sf.net> - * Fixes for [Bug 581627]. + * Fixes for [Bug 581627, 581795]. * generic/tkTest.c: Test commands not supported on non-Unix platforms should not be defined there in the first place. * tests/constraints.tcl: Fixed "secureserver" constraint. diff --git a/tests/unixWm.test b/tests/unixWm.test index e430c84..484236d 100644 --- a/tests/unixWm.test +++ b/tests/unixWm.test @@ -7,7 +7,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: unixWm.test,v 1.24 2002/07/15 16:56:32 dgp Exp $ +# RCS: @(#) $Id: unixWm.test,v 1.25 2002/07/15 18:10:47 dgp Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -2111,7 +2111,7 @@ test unixWm-53.2 {TkWmRemoveFromColormapWindows procedure} { wm colormap .t } {} -test unixWm-54.1 {TkpMakeMenuWindow procedure, setting save_under} { +test unixWm-54.1 {TkpMakeMenuWindow procedure, setting save_under} unix { catch {destroy .t} catch {destroy .m} toplevel .t -width 300 -height 200 -bd 2 -relief raised @@ -2128,7 +2128,7 @@ test unixWm-54.1 {TkpMakeMenuWindow procedure, setting save_under} { destroy .m set x } {no event} -test unixWm-54.2 {TkpMakeMenuWindow procedure, setting override_redirect} { +test unixWm-54.2 {TkpMakeMenuWindow procedure, setting override_redirect} unix { catch {destroy .m} menu .m .m add command -label First |