summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_liststore.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test_liststore.py b/tests/test_liststore.py
index da53a07e..87dd5945 100644
--- a/tests/test_liststore.py
+++ b/tests/test_liststore.py
@@ -32,5 +32,23 @@ class ListStoreTest(unittest.TestCase):
store.set_default_sort_func(None)
self.failIf(store.has_default_sort_func())
+ # Two tests for bug 537459. Since it is a memory corruption, we
+ # use a large loop count hoping to trigger a segfault.
+
+ def testNegativeIndexGet(self):
+ store = gtk.ListStore(int)
+ for i in range(200):
+ store.append((i,))
+ self.assertEqual(store[-1][0], i)
+
+ def testNegativeIndexSet(self):
+ store = gtk.ListStore(int)
+ for i in range(200):
+ store.append((i,))
+ del store[-1]
+ self.assert_(len(store) == 0)
+
+
+
if __name__ == '__main__':
unittest.main()