cpython/Lib/test/crashers
Nick Coghlan 692b023f77 Record a known crasher from #6717 2012-11-05 21:26:57 +10:00
..
README Merged revisions 87101,87146,87156,87172,87175,87371,87378,87522-87524,87526-87528,87530-87536,87581 via svnmerge from 2011-02-25 10:03:34 +00:00
bogus_code_obj.py Merged revisions 77523 via svnmerge from 2010-01-16 15:11:38 +00:00
borrowed_ref_1.py
borrowed_ref_2.py
compiler_recursion.py
gc_inspection.py
infinite_loop_re.py
loosing_mro_ref.py
mutation_inside_cyclegc.py
nasty_eq_vs_dict.py
recursion_limit_too_high.py #11515: fix several typos. Patch by Piotr Kasprzyk. 2011-03-15 05:18:48 +02:00
recursive_call.py convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
trace_at_recursion_limit.py Record a known crasher from #6717 2012-11-05 21:26:57 +10:00
underlying_dict.py another pretty crasher served up by pypy 2011-01-25 00:00:28 +00:00

README

This directory only contains tests for outstanding bugs that cause the
interpreter to segfault.  Ideally this directory should always be empty, but
sometimes it may not be easy to fix the underlying cause and the bug is deemed
too obscure to invest the effort.

Each test should fail when run from the command line:

	./python Lib/test/crashers/weakref_in_del.py

Put as much info into a docstring or comments to help determine the cause of the
failure, as well as a bugs.python.org issue number if it exists.  Particularly
note if the cause is system or environment dependent and what the variables are.

Once the crash is fixed, the test case should be moved into an appropriate test
(even if it was originally from the test suite).  This ensures the regression
doesn't happen again.  And if it does, it should be easier to track down.