summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2014-05-12 21:52:39 (GMT)
committerdgp@users.sourceforge.net <dgp>2014-05-12 21:52:39 (GMT)
commit445e220694c8fa058e09e8c12e7d400f71abb13d (patch)
treed6817207a834b1496233dff277dd79a9ebd2051c
parent97760c88b8cf5c1dc9e12122c389204d9255d940 (diff)
parentc6cf1e8f407f834c0fd6461dc7b8d2e1cba716ba (diff)
downloadtcl-445e220694c8fa058e09e8c12e7d400f71abb13d.zip
tcl-445e220694c8fa058e09e8c12e7d400f71abb13d.tar.gz
tcl-445e220694c8fa058e09e8c12e7d400f71abb13d.tar.bz2
Restore the largefileSupport constraint on Darwin, where tests (chan)io-34.21
take an unbearable 90 seconds each to complete.
-rw-r--r--tests/chanio.test2
-rw-r--r--tests/io.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/chanio.test b/tests/chanio.test
index 5b77f54..e53f059 100644
--- a/tests/chanio.test
+++ b/tests/chanio.test
@@ -44,7 +44,7 @@ namespace eval ::tcl::test::io {
# You need a *very* special environment to do some tests. In particular,
# many file systems do not support large-files...
- testConstraint largefileSupport 1
+ testConstraint largefileSupport [expr {$::tcl_platform(os) ne "Darwin"}]
# some tests can only be run is umask is 2 if "umask" cannot be run, the
# tests will be skipped.
diff --git a/tests/io.test b/tests/io.test
index a072bd4..d05b882 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -45,7 +45,7 @@ testConstraint thread [expr {0 == [catch {package require Thread 2.7-}]}]
# You need a *very* special environment to do some tests. In
# particular, many file systems do not support large-files...
-testConstraint largefileSupport 1
+testConstraint largefileSupport [expr {$::tcl_platform(os) ne "Darwin"}]
# some tests can only be run is umask is 2
# if "umask" cannot be run, the tests will be skipped.