Home | History | Annotate | only in /external/python/cpython2/Lib/test/crashers
Up to higher level directory
NameDateSize
bogus_code_obj.py06-Dec-2017619
borrowed_ref_1.py06-Dec-2017398
borrowed_ref_2.py06-Dec-2017644
buffer_mutate.py06-Dec-2017873
compiler_recursion.py06-Dec-201781
decref_before_assignment.py06-Dec-20171,020
gc_has_finalizer.py06-Dec-2017724
gc_inspection.py06-Dec-20171.1K
infinite_loop_re.py06-Dec-2017645
loosing_mro_ref.py06-Dec-20171.1K
mutation_inside_cyclegc.py06-Dec-2017753
nasty_eq_vs_dict.py06-Dec-20171K
README06-Dec-2017838
recursion_limit_too_high.py06-Dec-2017779
recursive_call.py06-Dec-2017357

README

      1 This directory only contains tests for outstanding bugs that cause the
      2 interpreter to segfault.  Ideally this directory should always be empty, but
      3 sometimes it may not be easy to fix the underlying cause and the bug is deemed
      4 too obscure to invest the effort.
      5 
      6 Each test should fail when run from the command line:
      7 
      8 	./python Lib/test/crashers/weakref_in_del.py
      9 
     10 Put as much info into a docstring or comments to help determine the cause of the
     11 failure, as well as a bugs.python.org issue number if it exists.  Particularly
     12 note if the cause is system or environment dependent and what the variables are.
     13 
     14 Once the crash is fixed, the test case should be moved into an appropriate test
     15 (even if it was originally from the test suite).  This ensures the regression
     16 doesn't happen again.  And if it does, it should be easier to track down.
     17