[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-10 Thread Brett Cannon
Brett Cannon added the comment: OK, that means everything is fixed as case_sensitivity_tests.diff fixes those test errors. Committed in r72559. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python trac

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-10 Thread Ismail Donmez
Ismail Donmez added the comment: Applied skip_bytecode.diff and test_file_loader.diff clean build results in: == FAIL: test_case_insensitivity (importlib.test.extension.test_case_sensitivity.ExtensionModuleCaseSensi tivityTes

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-10 Thread Brett Cannon
Changes by Brett Cannon : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-10 Thread Brett Cannon
Brett Cannon added the comment: Bah, I screwed up and left a file out of skip_bytecode_writing.diff. If you apply test_file_loader along with that patch that should fix the error. -- Added file: http://bugs.python.org/file13950/test_file_loader.diff

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-09 Thread Ismail Donmez
Ismail Donmez added the comment: 1 Fail: test test_importlib crashed -- : 'module' object has no attribute 'writes_bytecode' Traceback (most recent call last): File "/Users/cartman/Python-3.1b1/Lib/test/regrtest.py", line 620, in runtest_inner indirect_test() File "/Users/cartman/Pyth

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-09 Thread Brett Cannon
Brett Cannon added the comment: OK, here is an attempt to fix this. My guess is it has something to do with sys.dont_write_bytecode, otherwise I cannot understand why you fail and not someone else since no other case-sensitive systems have reported this failure. -- status: open -> pendi

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-08 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the quick reply, Ismail! I will look into the last failure this weekend, but off the top of my head I am not sure why that test would be failing since everything to do with that test should be a mock and thus not touching the file system. -- _

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Ismail Donmez
Ismail Donmez added the comment: Down to 1 failure: FAILED (failures=1) test test_importlib failed -- Traceback (most recent call last): File "/Users/cartman/Python- 3.1b1/Lib/importlib/test/source/test_abc_loader.py", line 271, in test_lacking_parent self.verify_bytecode(mock, name) F

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Brett Cannon added the comment: OK, Ismail, here is another patch. Revert the last one and try this. Looks like I was being stupid by forgetting to remove the 'darwin' platform check. But I also made the check simpler. -- status: open -> pending Added file: http://bugs.python.org/file13

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Changes by Brett Cannon : Removed file: http://bugs.python.org/file13914/case_sensitivity_tests.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Brett Cannon added the comment: Damn, that patch should have caused those case-sensitivity tests to be skipped. I will dig into this later today and hopefully have another patch to test some time tonight. -- resolution: fixed -> title: [3.1alpha1,2,beta1] test_importlib fails on Mac OS