diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-07-19 08:36:50 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-07-19 08:36:50 (GMT) |
commit | 0b89726f8a6f74fe1cb4da6dc35374248cff6da7 (patch) | |
tree | 25e24010e896dcd56e6e937d4c611fb99e4b17f7 /tests/cmdMZ.test | |
parent | 452519a8a01a4a9e857e7c6950d507c5cebc8494 (diff) | |
download | tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.zip tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.tar.gz tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.tar.bz2 |
Renamed 'notLinux' constraint to 'nonLinuxOnly' for clarity. [Bug#583427]
Diffstat (limited to 'tests/cmdMZ.test')
-rw-r--r-- | tests/cmdMZ.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cmdMZ.test b/tests/cmdMZ.test index f0593b0..a948a21 100644 --- a/tests/cmdMZ.test +++ b/tests/cmdMZ.test @@ -11,13 +11,13 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: cmdMZ.test,v 1.11 2002/07/04 21:47:59 dkf Exp $ +# RCS: @(#) $Id: cmdMZ.test,v 1.12 2002/07/19 08:36:51 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest namespace import -force ::tcltest::* } -set tcltest::testConstraints(notLinux) \ +set tcltest::testConstraints(nonLinuxOnly) \ [expr {![string equal Linux $tcl_platform(os)]}] # Tcl_PwdObjCmd @@ -31,7 +31,7 @@ test cmdMZ-1.2 {Tcl_PwdObjCmd: simple pwd} { test cmdMZ-1.3 {Tcl_PwdObjCmd: simple pwd} { expr [string length pwd]>0 } 1 -test cmdMZ-1.4 {Tcl_PwdObjCmd: failure} {unixOnly notLinux} { +test cmdMZ-1.4 {Tcl_PwdObjCmd: failure} {unixOnly nonLinuxOnly} { # We don't want this test to run on Linux because they do a # permissions caching trick which causes this to fail. The # caching is incorrect, but we have no control over that. |