diff options
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] |