diff options
author | dgp <dgp@users.sourceforge.net> | 2014-05-12 21:50:55 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-05-12 21:50:55 (GMT) |
commit | 43c20f030735113b6c79ac94990adb74bf92d28d (patch) | |
tree | 6b6489cc7a21391241fbf13ba61b318465c26893 /tests | |
parent | 3bb6afce06b698a6c6eee8c8dfc04a21dcda93d1 (diff) | |
download | tcl-43c20f030735113b6c79ac94990adb74bf92d28d.zip tcl-43c20f030735113b6c79ac94990adb74bf92d28d.tar.gz tcl-43c20f030735113b6c79ac94990adb74bf92d28d.tar.bz2 |
Restore the largefileSupport constraint on Darwin, where tests (chan)io-34.21
take an unbearable 90 seconds each to complete.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/chanio.test | 2 | ||||
-rw-r--r-- | tests/io.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/chanio.test b/tests/chanio.test index 5ea7ec1..2f2540e 100644 --- a/tests/chanio.test +++ b/tests/chanio.test @@ -41,7 +41,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 7f1a357..f692e43 100644 --- a/tests/io.test +++ b/tests/io.test @@ -41,7 +41,7 @@ testConstraint testthread [llength [info commands testthread]] # 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. |