diff options
| author | hobbs <hobbs> | 2005-10-05 00:38:04 (GMT) |
|---|---|---|
| committer | hobbs <hobbs> | 2005-10-05 00:38:04 (GMT) |
| commit | f5d0af7da2bc7976b56f0a95bf6725fe0c2b5c86 (patch) | |
| tree | dd2a4e9a300308258caa39245ed723bb95d8cdb4 /tests/winFile.test | |
| parent | e0c6f0d18a6ee5de74a57a988a02cd9ab2c4b11b (diff) | |
| download | tcl-f5d0af7da2bc7976b56f0a95bf6725fe0c2b5c86.zip tcl-f5d0af7da2bc7976b56f0a95bf6725fe0c2b5c86.tar.gz tcl-f5d0af7da2bc7976b56f0a95bf6725fe0c2b5c86.tar.bz2 | |
* tests/winFile.test (getuser): allow valid Windows usernames.
[Bug 1311285]
Diffstat (limited to 'tests/winFile.test')
| -rw-r--r-- | tests/winFile.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/winFile.test b/tests/winFile.test index ffbb776..b8837db 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.16 2004/11/08 19:19:27 davygrvy Exp $ +# RCS: @(#) $Id: winFile.test,v 1.17 2005/10/05 00:38:05 hobbs Exp $ if {[catch {package require tcltest 2.0.2}]} { puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required." @@ -112,7 +112,7 @@ proc getuser {fname} { if {[string match -nocase "* $tail" $line]} { set attrs [string range $line \ 0 end-[string length $tail]] - regexp { [A-Z]+\\.*$} $attrs owner + regexp { [^ \\]+\\.*$} $attrs owner set owner [string trim $owner] } } |
