Commit 3b10dc35 authored by Guido van Rossum's avatar Guido van Rossum

Require 'largefile' resource for Mac OSX as well.

parent bb484652
...@@ -23,11 +23,11 @@ size = 2500000000L ...@@ -23,11 +23,11 @@ size = 2500000000L
name = test_support.TESTFN name = test_support.TESTFN
# On Windows this test comsumes large resources; It takes a long time to build # On Windows and Mac OSX this test comsumes large resources; It takes
# the >2GB file and takes >2GB of disk space therefore the resource must be # a long time to build the >2GB file and takes >2GB of disk space
# enabled to run this test. If not, nothing after this line stanza will be # therefore the resource must be enabled to run this test. If not,
# executed. # nothing after this line stanza will be executed.
if sys.platform[:3] == 'win': if sys.platform[:3] == 'win' or sys.platform == 'darwin':
test_support.requires( test_support.requires(
'largefile', 'largefile',
'test requires %s bytes and a long time to run' % str(size)) 'test requires %s bytes and a long time to run' % str(size))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment