diff options
author | dgp <dgp@users.sourceforge.net> | 2013-03-20 15:39:48 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-03-20 15:39:48 (GMT) |
commit | d06c12ad4e7d14199f6c4d531f379b3347d4d06c (patch) | |
tree | 2a414bb67d98978da37bc166a018a34d0a4e1a50 /tests/fCmd.test | |
parent | f771719ac2875a6dafb2c008c34f95476e3bf808 (diff) | |
parent | 4072ab92c6098e4cebd7922e2118252a9a594f30 (diff) | |
download | tcl-d06c12ad4e7d14199f6c4d531f379b3347d4d06c.zip tcl-d06c12ad4e7d14199f6c4d531f379b3347d4d06c.tar.gz tcl-d06c12ad4e7d14199f6c4d531f379b3347d4d06c.tar.bz2 |
Bring forward tests to trunk
Diffstat (limited to 'tests/fCmd.test')
-rw-r--r-- | tests/fCmd.test | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test index 8f27ad4..29447f0 100644 --- a/tests/fCmd.test +++ b/tests/fCmd.test @@ -2599,7 +2599,28 @@ test fCmd-30.3 {file readable on 'pagefile.sys'} -constraints {win} -body { } return $r } -result {exists 1 readable 0 stat 0 {}} - + +test fCmd-30.4 {file writable on 'My Documents'} -constraints {win 2000orNewer} -body { + set mydocsname "~/My Documents" + # Would be good to localise this name, since this test will only function + # on english-speaking windows otherwise + if {[file exists $mydocsname]} { + return [file writable $mydocsname] + } + return 1 +} -result {1} +test fCmd-30.5 {file readable on 'NTUSER.DAT'} -constraints {win 2000orNewer knownBug} -body { + # Apparently the OS has this file open with exclusive permissions Windows + # doesn't provide any way to determine that fact without actually trying + # to open the file (open NTUSER.dat r), which fails. Hence this isn't + # really a knownBug in Tcl, but an OS limitation. But, perhaps in the + # future that limitation will be lifted. + if {[file exists "~/NTUSER.DAT"]} { + return [file readable "~/NTUSER.DAT"] + } + return 0 +} -result {0} + # cleanup cleanup if {[testConstraint unix]} { |