[issue9831] test_distutils fails on MacOSX 10.6

2010-09-29 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: +3rd party ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9831 ___ ___ Python-bugs-list

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Ned Deily
Ned Deily n...@acm.org 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

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org 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

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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 -

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-12 Thread Michael Foord
Changes by Michael Foord mich...@voidspace.org.uk: -- nosy: -michael.foord ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9831 ___ ___

[issue9831] test_distutils fails on MacOSX 10.6

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

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org 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 -- ___

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - tarek components: +Distutils, Macintosh nosy: +eric.araujo, michael.foord, ned.deily, tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9831

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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