diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | tests/winFile.test | 8 |
2 files changed, 6 insertions, 5 deletions
@@ -8,7 +8,8 @@ * generic/tclFCmd.c: * tests/fileSystem.test: fixed a 'knownBug' with 'file attributes ""' - * tests/winFCmd.test: added 'pcOnly' constraint to some + * tests/winFCmd.test: + * tessts/winFile.test: added 'pcOnly' constraint to some tests to make for more useful 'tests skipped' log from running all tests. diff --git a/tests/winFile.test b/tests/winFile.test index c0b26e3..4b04096 100644 --- a/tests/winFile.test +++ b/tests/winFile.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: winFile.test,v 1.8 2002/06/13 09:40:00 vincentdarley Exp $ +# RCS: @(#) $Id: winFile.test,v 1.9 2002/07/18 16:36:56 vincentdarley Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -20,12 +20,12 @@ if {[lsearch [namespace children] ::tcltest] == -1} { test winFile-1.1 {TclpGetUserHome} {pcOnly} { list [catch {glob ~nosuchuser} msg] $msg } {1 {user "nosuchuser" doesn't exist}} -test winFile-1.2 {TclpGetUserHome} {nt nonPortable} { +test winFile-1.2 {TclpGetUserHome} {pcOnly nt nonPortable} { # The administrator account should always exist. catch {glob ~administrator} } {0} -test winFile-1.2 {TclpGetUserHome} {95} { +test winFile-1.2 {TclpGetUserHome} {pcOnly 95} { # Find some user in system.ini and then see if they have a home. set f [open $::env(windir)/system.ini] @@ -44,7 +44,7 @@ test winFile-1.2 {TclpGetUserHome} {95} { close $f set x } {0} -test winFile-1.3 {TclpGetUserHome} {nt nonPortable} { +test winFile-1.3 {TclpGetUserHome} {pcOnly nt nonPortable} { catch {glob ~stanton@workgroup} } {0} |