summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-07-18 16:39:49 (GMT)
committervincentdarley <vincentdarley>2002-07-18 16:39:49 (GMT)
commit452519a8a01a4a9e857e7c6950d507c5cebc8494 (patch)
tree243933e217436c1df3c48c18f05f35e0f93c3c40
parent6ecfd7904bbd82f1d423c7f075f80edbbd34fee4 (diff)
downloadtcl-452519a8a01a4a9e857e7c6950d507c5cebc8494.zip
tcl-452519a8a01a4a9e857e7c6950d507c5cebc8494.tar.gz
tcl-452519a8a01a4a9e857e7c6950d507c5cebc8494.tar.bz2
pcOnly constraints added
-rw-r--r--ChangeLog4
-rw-r--r--tests/fCmd.test4
-rw-r--r--tests/winPipe.test12
3 files changed, 11 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 3101447..4baa795 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,9 +9,11 @@
* tests/fileSystem.test: fixed a 'knownBug' with 'file
attributes ""'
* tests/winFCmd.test:
+ * tests/winPipe.test:
+ * tests/fCmd.test:
* tessts/winFile.test: added 'pcOnly' constraint to some
tests to make for more useful 'tests skipped' log from
- running all tests.
+ running all tests on non-Windows platforms.
2002-07-17 Miguel Sofer <msofer@users.sourceforge.net>
diff --git a/tests/fCmd.test b/tests/fCmd.test
index 6292fb2..ee9e7a0 100644
--- a/tests/fCmd.test
+++ b/tests/fCmd.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: fCmd.test,v 1.20 2002/07/10 13:08:20 dkf Exp $
+# RCS: @(#) $Id: fCmd.test,v 1.21 2002/07/18 16:39:50 vincentdarley Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -433,7 +433,7 @@ test fCmd-6.6 {CopyRenameOneFile: errno != ENOENT} {unixOnly notRoot testchmod}
testchmod 755 td1
set msg
} {1 {error renaming "tf1" to "td1/tf1": permission denied}}
-test fCmd-6.7 {CopyRenameOneFile: errno != ENOENT} {95} {
+test fCmd-6.7 {CopyRenameOneFile: errno != ENOENT} {pcOnly 95} {
cleanup
createfile tf1
list [catch {file rename tf1 $long} msg] $msg
diff --git a/tests/winPipe.test b/tests/winPipe.test
index c4b8a59..28b2708 100644
--- a/tests/winPipe.test
+++ b/tests/winPipe.test
@@ -12,7 +12,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: winPipe.test,v 1.20 2002/07/10 16:03:46 dgp Exp $
+# RCS: @(#) $Id: winPipe.test,v 1.21 2002/07/18 16:39:50 vincentdarley Exp $
package require tcltest
namespace import -force ::tcltest::*
@@ -72,15 +72,15 @@ test winpipe-1.2 {32 bit comprehensive tests: from big file} {pcOnly exec cat32}
exec $cat32 < $path(big) > $path(stdout) 2> $path(stderr)
list [contents $path(stdout)] [contents $path(stderr)]
} "{$big} stderr32"
-test winpipe-1.3 {32 bit comprehensive tests: a little from pipe} {nt exec cat32} {
+test winpipe-1.3 {32 bit comprehensive tests: a little from pipe} {pcOnly nt exec cat32} {
exec [interpreter] more < little | $cat32 > $path(stdout) 2> $path(stderr)
list [contents $path(stdout)] [contents $path(stderr)]
} {little stderr32}
-test winpipe-1.4 {32 bit comprehensive tests: a lot from pipe} {nt exec cat32} {
+test winpipe-1.4 {32 bit comprehensive tests: a lot from pipe} {pcOnly nt exec cat32} {
exec [interpreter] more < big | $cat32 > $path(stdout) 2> $path(stderr)
list [contents $path(stdout)] [contents $path(stderr)]
} "{$big} stderr32"
-test winpipe-1.5 {32 bit comprehensive tests: a lot from pipe} {95 exec cat32} {
+test winpipe-1.5 {32 bit comprehensive tests: a lot from pipe} {pcOnly 95 exec cat32} {
exec command /c type big |& $cat32 > $path(stdout) 2> $path(stderr)
list [contents $path(stdout)] [contents $path(stderr)]
} "{$big} stderr32"
@@ -172,13 +172,13 @@ test winpipe-1.21 {32 bit comprehensive tests: read/write application} \
catch {close $f}
set r
} "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
-test winpipe-1.22 {Checking command.com for Win95/98 hanging} {95 exec} {
+test winpipe-1.22 {Checking command.com for Win95/98 hanging} {pcOnly 95 exec} {
exec command.com /c dir /b
set result 1
} 1
file delete more
-test winpipe-4.1 {Tcl_WaitPid} {nt exec cat32} {
+test winpipe-4.1 {Tcl_WaitPid} {pcOnly nt exec cat32} {
proc readResults {f} {
global x result
if { [eof $f] } {