[issue9831] test_distutils fails on MacOSX 10.6

2010-09-29 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +3rd party ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Michael Foord
Changes by Michael Foord : -- nosy: -michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Éric Araujo
Éric Araujo added the comment: I noticed this bug in the tests of distutils2 and added it to my todo list some time ago. Tests looking at pycs should take PYTHONDONTWRITEBYTECODE into account and be skipped instead of failing. I’ll fix it. -- assignee: tarek -> eric.araujo component

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Ismail Donmez
Ismail Donmez added the comment: Problem is I set PYTHONDONTWRITEBYTECODE to 1, tests should disable this environmental variable before testing for *.pyc files. Closing as invalid. -- resolution: -> invalid status: open -> closed ___ Python tracker

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Ned Deily
Ned Deily added the comment: I am not able to reproduce that failure running on 10.6 (case-sensitive HFS+) using your ./configure options and running the tests in the build directory (make test). How are you running the tests? Could there be a file or directory permissions issue? -

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Éric Araujo
Éric Araujo added the comment: Thank you for the report. Can you apply this change and paste the new, more useful output? -self.assertTrue("__init__.pyc" in files) +self.assertIn("__init__.pyc", files) -- ___ Python tracker

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> tarek components: +Distutils, Macintosh nosy: +eric.araujo, michael.foord, ned.deily, tarek ___ Python tracker ___ __

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez added the comment: Btw I configure with; ./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6 -- ___ Python tracker

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
New submission from Ismail Donmez : Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem. == FAIL: test_package_data (distutils.tests.test_build_py.BuildPyTestCase)