1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-22 05:51:11 -07:00

Divide sizes by 8 to correct my previous mistake

Copied from Perforce
 Change: 19334
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Tucker 1998-02-23 14:51:44 +00:00
parent f17b1d51ad
commit fc0c13174a

View file

@ -48,8 +48,8 @@ static void test(void)
lev1 = INIT_SAVE;
for (i=0; i<50; i++) {
for (j=0; j<3000; j++) {
a = allocepvm(ap1s, (size_t) (8+8*ranint(4)));
for (j=0; j<10000; j++) {
a = allocepvm(ap1s, (size_t) (1+ranint(4)));
}
comment("collecting...");
mps_epvm_collect(pool1);