diff options
author | Georg Brandl <georg@python.org> | 2006-01-10 19:29:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-01-10 19:29:24 (GMT) |
commit | 7e8bfa416384d83de697028e3e29d2227394c392 (patch) | |
tree | ccf32e32f64f0fc11b271721d54e428af9a281b2 | |
parent | 8cc4ef561c1ba8f36520396c6f631764b55f4643 (diff) | |
download | cpython-7e8bfa416384d83de697028e3e29d2227394c392.zip cpython-7e8bfa416384d83de697028e3e29d2227394c392.tar.gz cpython-7e8bfa416384d83de697028e3e29d2227394c392.tar.bz2 |
Add outstanding_crashes.py with tests for crashes.
-rw-r--r-- | Lib/test/outstanding_bugs.py | 3 | ||||
-rw-r--r-- | Lib/test/outstanding_crashes.py | 38 |
2 files changed, 41 insertions, 0 deletions
diff --git a/Lib/test/outstanding_bugs.py b/Lib/test/outstanding_bugs.py index be71fde4..7b17ba8 100644 --- a/Lib/test/outstanding_bugs.py +++ b/Lib/test/outstanding_bugs.py @@ -22,3 +22,6 @@ class TestBug1385040(unittest.TestCase): def test_main(): test_support.run_unittest(TestBug1385040) + +if __name__ == "__main__": + test_main() diff --git a/Lib/test/outstanding_crashes.py b/Lib/test/outstanding_crashes.py new file mode 100644 index 0000000..3fa9659 --- /dev/null +++ b/Lib/test/outstanding_crashes.py @@ -0,0 +1,38 @@ +# +# This file is for everybody to add tests for crashes that aren't +# fixed yet. Please add a test case and appropriate description. +# +# When you fix one of the crashes, please move the test to the correct +# test_ module. +# + +import unittest +from test import test_support + + +# Bug 1377858 +# +# mwh's description: +# The problem is obvious if you read typeobject.c around line 660: the weakref +# list is cleared before __del__ is called, so any weakrefs added during the +# execution of __del__ are never informed of the object's death. + +import weakref +ref = None + +class TestBug1377858(unittest.TestCase): + class Target(object): + def __del__(self): + global ref + ref = weakref.ref(self) + + def testBug1377858(self): + w = self.__class__.Target() + w = None + print ref() + +def test_main(): + test_support.run_unittest(TestBug1377858) + +if __name__ == "__main__": + test_main() |