[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread STINNER Victor
STINNER Victor added the comment: > All tests now pass. Ok, thanks for your report and your feedback. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread Gareth Rees
Gareth Rees added the comment: All tests now pass. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread STINNER Victor
STINNER Victor added the comment: > After changing NULL to (int *)1, all tests pass. Ok, so Lion has a special case for reading from NULL. I changed the tests to try to fix your bug. Can you tell me if it's now better? -- ___ Python tracker

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1777df2ce50d by Victor Stinner in branch 'default': Issue #12700: fix test_faulthandler for Mac OS X Lion http://hg.python.org/cpython/rev/1777df2ce50d -- nosy: +python-dev ___ Python tracker

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread Gareth Rees
Gareth Rees added the comment: After changing NULL to (int *)1, all tests pass. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread STINNER Victor
STINNER Victor added the comment: test_enable_file, test_enable_single_thread, test_gil_released and test_read_null read an int (4 bytes) from the address 0 (NULL). test_sigsegv pass: this test raises explicitly a SIGSEGV and the signal handler writes the right message ("Segmentation fault").

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +easy nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue12700] test_faulthandler fails on Mac OS X Lion

2011-08-05 Thread Gareth Rees
New submission from Gareth Rees : On Mac OS 10.7, test_faulthandler fails. See test output below. It looks as though the tests may be at fault in expecting to see "(?:Segmentation fault|Bus error)" instead of "(?:Segmentation fault|Bus error|Illegal instruction)". test_disable (__main__.F