[Python-checkins] python/dist/src/Lib/test test_import.py,1.14,1.15

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Thu, 20 Jun 2002 14:34:37 -0700


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

Modified Files:
	test_import.py 
Log Message:
Disable the test for importing very long lists for MacPython: it triggers
an out-of-memory condition (and a hang on OSX). Filed a bug report
(#571845) to make sure this is eventually fixed.


Index: test_import.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_import.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** test_import.py	15 Jun 2002 05:14:05 -0000	1.14
--- test_import.py	20 Jun 2002 21:34:35 -0000	1.15
***************
*** 108,110 ****
              os.unlink(fname)
  
! test_module_with_large_stack('longlist')
--- 108,111 ----
              os.unlink(fname)
  
! if sys.platform != 'mac':
!     test_module_with_large_stack('longlist')