tests/basics/gc1: Add test which triggers GC threshold.

This commit is contained in:
Damien George 2018-02-27 22:39:17 +11:00
parent d3cac18d49
commit 439acddc60
1 changed files with 5 additions and 0 deletions

View File

@ -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)