This commit is contained in:
Jan Nieuwenhuizen 2019-10-28 19:46:47 +01:00
parent c28f884e01
commit 556f15a673
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 18 additions and 0 deletions

View File

@ -79,6 +79,24 @@ test_gc (char const *name)
print_arena (gc_free () - 1);
gc_stats_ ("1");
eputs ("\n");
gc_ ();
VALUE (cell_zero) = 'd';
print_arena (gc_free () - 1);
gc_stats_ ("2");
eputs ("\n");
gc_ ();
VALUE (cell_zero) = 'e';
print_arena (gc_free () - 1);
gc_stats_ ("3");
eputs ("\n");
gc_ ();
VALUE (cell_zero) = 'f';
print_arena (gc_free () - 1);
gc_stats_ ("3");
eputs ("\n");
}
void