1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 08:41:47 -07:00

Increase the commit limit for exposet0 so that the test always passes.

Copied from Perforce
 Change: 186051
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-05-12 19:51:54 +01:00
parent 51ae9e9343
commit 84ee41b58b

View file

@ -245,7 +245,7 @@ int main(int argc, char *argv[])
die(mps_arena_create(&arena, mps_arena_class_vm(), 2*testArenaSIZE),
"arena_create");
mps_message_type_enable(arena, mps_message_type_gc());
die(mps_arena_commit_limit_set(arena, testArenaSIZE), "set limit");
die(mps_arena_commit_limit_set(arena, 2*testArenaSIZE), "set limit");
die(mps_thread_reg(&thread, arena), "thread_reg");
mps_tramp(&r, test, arena, 0);
mps_thread_dereg(thread);