summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/gc1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/gc1.py')
-rw-r--r--tests/basics/gc1.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/basics/gc1.py b/tests/basics/gc1.py
index dcbe0bfcf6..332bf9744c 100644
--- a/tests/basics/gc1.py
+++ b/tests/basics/gc1.py
@@ -27,3 +27,8 @@ if hasattr(gc, 'threshold'):
assert(gc.threshold() == 0)
assert(gc.threshold(-1) is None)
assert(gc.threshold() == -1)
+
+ # Setting a low threshold should trigger collection at the list alloc
+ gc.threshold(1)
+ [[], []]
+ gc.threshold(-1)