diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-06-23 15:36:52 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-06-23 15:36:52 (GMT) |
commit | 917f6e364bb4aaeed6b6e109ce16525d58091193 (patch) | |
tree | 62ce3a9ba3ee31456f0967b7e5e3c7b35c33dd5e /tests/unixNotfy.test | |
parent | 5ce4f325726f9d4a32b7499cc8a0ff0d81a2dc48 (diff) | |
download | tcl-917f6e364bb4aaeed6b6e109ce16525d58091193.zip tcl-917f6e364bb4aaeed6b6e109ce16525d58091193.tar.gz tcl-917f6e364bb4aaeed6b6e109ce16525d58091193.tar.bz2 |
Standardize some use of test constraints onto names that are documented
Diffstat (limited to 'tests/unixNotfy.test')
-rw-r--r-- | tests/unixNotfy.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unixNotfy.test b/tests/unixNotfy.test index 49dc015..b8f8e95 100644 --- a/tests/unixNotfy.test +++ b/tests/unixNotfy.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: unixNotfy.test,v 1.15 2004/06/22 13:09:02 vasiljevic Exp $ +# RCS: @(#) $Id: unixNotfy.test,v 1.16 2004/06/23 15:36:58 dkf Exp $ # The tests should not be run if you have a notifier which is unable to # detect infinite vwaits, as the tests below will hang. The presence of @@ -30,7 +30,7 @@ testConstraint testthread [expr {[info commands testthread] != {}}] # an error. test unixNotfy-1.1 {Tcl_DeleteFileHandler} \ - -constraints {noTk && unixOnly && !testthread} \ + -constraints {noTk && unix && !testthread} \ -body { catch {vwait x} set f [open [makeFile "" foo] w] @@ -45,7 +45,7 @@ test unixNotfy-1.1 {Tcl_DeleteFileHandler} \ catch { removeFile foo } } test unixNotfy-1.2 {Tcl_DeleteFileHandler} \ - -constraints {noTk && unixOnly && !testthread} \ + -constraints {noTk && unix && !testthread} \ -body { catch {vwait x} set f1 [open [makeFile "" foo] w] @@ -67,7 +67,7 @@ test unixNotfy-1.2 {Tcl_DeleteFileHandler} \ } test unixNotfy-2.1 {Tcl_DeleteFileHandler} \ - -constraints {noTk unixOnly testthread} \ + -constraints {noTk unix testthread} \ -body { update set f [open [makeFile "" foo] w] @@ -85,7 +85,7 @@ test unixNotfy-2.1 {Tcl_DeleteFileHandler} \ catch { removeFile foo } } test unixNotfy-2.2 {Tcl_DeleteFileHandler} \ - -constraints {noTk unixOnly testthread} \ + -constraints {noTk unix testthread} \ -body { update set f1 [open [makeFile "" foo] w] |