mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 01:41:01 -08:00
Use mps_root_create_thread in preference to mps_root_create_reg. New test harness run_test passes pointer to cold end of stack, since this is needed by many tests. Copied from Perforce Change: 195917
33 lines
498 B
C
33 lines
498 B
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = create a VM arena with non-aligned size
|
|
language = c
|
|
link = testlib.o
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "testlib.h"
|
|
#include "mpsavm.h"
|
|
|
|
mps_arena_t arena;
|
|
|
|
static void test(void *stack_pointer)
|
|
{
|
|
|
|
/* create an arena that can't grow beyond 128 M */
|
|
|
|
cdie(mps_arena_create(&arena, mps_arena_class_vm(), (size_t) (1024*1024*10+1)),
|
|
"create arena");
|
|
|
|
mps_arena_destroy(arena);
|
|
comment("Destroyed arena.");
|
|
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
run_test(test);
|
|
pass();
|
|
return 0;
|
|
}
|