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 | |
parent | 452519a8a01a4a9e857e7c6950d507c5cebc8494 (diff) | |
download | tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.zip tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.tar.gz tcl-0b89726f8a6f74fe1cb4da6dc35374248cff6da7.tar.bz2 |
Renamed 'notLinux' constraint to 'nonLinuxOnly' for clarity. [Bug#583427]
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | tests/cmdMZ.test | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2002-07-19 Donal K. Fellows <fellowsd@cs.man.ac.uk> + + * tests/cmdMZ.test: Renamed constraint for clarity. [Bug#583427] + 2002-07-18 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclInt.h: 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. |