# New Ticket Created by Andy Dougherty # Please include the string: [perl #38577] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38577 >
Would there be any objection to cutting the size of memory required by t/pmc/resizablebooleanarray_17.pasm in half? As is, it's sometimes hitting PANIC("Out of mem") for me. I don't think there's anything fundamental about the number 1,100,000 used in the test. (My system is PANIC-ing when asked for a realloc of 64MB. I suppose you could also regard it as a bug that we're apparently using 64 bytes to store each bit of information :-). Alternatively, I suppose you could reasonab --- parrot-current/t/pmc/resizablebooleanarray.t Sat Feb 11 12:30:37 2006 +++ parrot-andy/t/pmc/resizablebooleanarray.t Wed Feb 15 12:55:35 2006 @@ -662,7 +662,7 @@ pasm_output_is(<<'CODE', <<'OUTPUT', "direct access 2"); #new P0, .IntList new P0, .ResizableBooleanArray - set I10, 1100000 + set I10, 550000 set I0, 1 lp1: add I1, I0, 5 -- Andy Dougherty [EMAIL PROTECTED]