diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-06-24 12:45:41 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-06-24 12:45:41 (GMT) |
commit | 6d8d372b5f9573bf9ad3f6d27771ccc8a424c868 (patch) | |
tree | 247a6f8a357677371ada6b20a07faf589614debb /tests/cursor.test | |
parent | 00ed5364e040e4260dcb3282811a5d4d7c0a0327 (diff) | |
download | tk-6d8d372b5f9573bf9ad3f6d27771ccc8a424c868.zip tk-6d8d372b5f9573bf9ad3f6d27771ccc8a424c868.tar.gz tk-6d8d372b5f9573bf9ad3f6d27771ccc8a424c868.tar.bz2 |
Use standard constraint names
Diffstat (limited to 'tests/cursor.test')
-rw-r--r-- | tests/cursor.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cursor.test b/tests/cursor.test index da8b758..350ee91 100644 --- a/tests/cursor.test +++ b/tests/cursor.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: cursor.test,v 1.13 2004/06/17 22:38:57 dkf Exp $ +# RCS: @(#) $Id: cursor.test,v 1.14 2004/06/24 12:45:42 dkf Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -80,11 +80,11 @@ foreach wincur(num) $wincur(data_octal) { } set wincur(dir) [makeDirectory {dir with spaces}] set wincur(file) [makeFile $wincur(data_binary) "test file.cur" $wincur(dir)] -test cursor-2.3 {Tk_GetCursor procedure: cursor specs are lists} {pcOnly} { +test cursor-2.3 {Tk_GetCursor procedure: cursor specs are lists} win { destroy .b1 button .b1 -cursor [list @$wincur(file)] } {.b1} -test cursor-2.4 {Tk_GetCursor procedure: cursor specs are lists} {pcOnly} { +test cursor-2.4 {Tk_GetCursor procedure: cursor specs are lists} win { destroy .b1 button .b1 -cursor @[regsub -all {[][ \\{}""$#]} $wincur(file) {\\&}] } {.b1} @@ -242,7 +242,7 @@ foreach {testName cursor} { cursor-7.8 uparrow cursor-7.9 wait } { - test testName "check Windows cursor $cursor" -constraints pcOnly -setup { + test testName "check Windows cursor $cursor" -constraints win -setup { button .b -text $cursor } -body { .b configure -cursor $cursor |