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

pull/3633/merge
Damien George 2018-02-27 22:39:17 +11:00
rodzic d3cac18d49
commit 439acddc60
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

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