[Python-checkins] CVS: python/dist/src/Lib/test test_repr.py,1.4,1.5
Jack Jansen
jackjansen@users.sourceforge.net
Wed, 05 Sep 2001 13:08:10 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv31600/Python/Lib/test
Modified Files:
test_repr.py
Log Message:
LongReprTest fails on the Mac because it uses filenames with more than
32 characters per component. This makes mkdir() calls and such fail with EINVAL.
For now I am disabling the test on the Mac, and I'll open a bugreport.
Index: test_repr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_repr.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** test_repr.py 2001/09/05 02:26:26 1.4
--- test_repr.py 2001/09/05 20:08:07 1.5
***************
*** 267,269 ****
run_unittest(ReprTests)
! run_unittest(LongReprTest)
--- 267,270 ----
run_unittest(ReprTests)
! if os.name != 'mac':
! run_unittest(LongReprTest)