[Python-checkins] python/dist/src/Lib/test test_largefile.py,1.15,1.16

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 02 Dec 2002 02:42:33 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv28413

Modified Files:
	test_largefile.py 
Log Message:
Require 'largefile' resource for Mac OSX as well.


Index: test_largefile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_largefile.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** test_largefile.py	23 Jul 2002 19:03:55 -0000	1.15
--- test_largefile.py	2 Dec 2002 10:42:30 -0000	1.16
***************
*** 24,32 ****
  
  
! # On Windows this test comsumes large resources; It takes a long time to build
! # the >2GB file and takes >2GB of disk space therefore the resource must be
! # enabled to run this test.  If not, nothing after this line stanza will be
! # executed.
! if sys.platform[:3] == 'win':
      test_support.requires(
          'largefile',
--- 24,32 ----
  
  
! # On Windows and Mac OSX this test comsumes large resources; It takes
! # a long time to build the >2GB file and takes >2GB of disk space
! # therefore the resource must be enabled to run this test.  If not,
! # nothing after this line stanza will be executed.
! if sys.platform[:3] == 'win' or sys.platform == 'darwin':
      test_support.requires(
          'largefile',