diff options
author | vincentdarley <vincentdarley> | 2002-07-18 16:36:56 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-18 16:36:56 (GMT) |
commit | 6ecfd7904bbd82f1d423c7f075f80edbbd34fee4 (patch) | |
tree | feffca49ec59c6b8baa94abe4b4aff70241707e3 /tests/winFile.test | |
parent | 4541cfd99082642c8f24b2861c2735b1467ef602 (diff) | |
download | tcl-6ecfd7904bbd82f1d423c7f075f80edbbd34fee4.zip tcl-6ecfd7904bbd82f1d423c7f075f80edbbd34fee4.tar.gz tcl-6ecfd7904bbd82f1d423c7f075f80edbbd34fee4.tar.bz2 |
winFile.test cleanup
Diffstat (limited to 'tests/winFile.test')
-rw-r--r-- | tests/winFile.test | 8 |
1 files changed, 4 insertions, 4 deletions
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} |