mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -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
31 lines
446 B
C
31 lines
446 B
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = alloc in an uncreated pool
|
|
language = c
|
|
link = testlib.o
|
|
OUTPUT_SPEC
|
|
assert = true
|
|
assertfile P= mpsi.c
|
|
assertcond = TESTT(Pool, pool)
|
|
END_HEADER
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "testlib.h"
|
|
#include "mpscmvff.h"
|
|
|
|
static void test(void *stack_pointer)
|
|
{
|
|
mps_pool_t pool = malloc(4096);
|
|
mps_addr_t obj;
|
|
|
|
cdie(mps_alloc(&obj, pool, 152), "allocate");
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
run_test(test);
|
|
return 0;
|
|
}
|