1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-01 03:33:28 -07:00
emacs/mps/test/conerr/15.c
Gareth Rees 8d5068b5ab Avoid using deprecated function mps_tramp.
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
2019-01-09 16:17:17 +00:00

28 lines
383 B
C

/*
TEST_HEADER
id = $Id$
summary = destroy 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"
static void test(void *stack_pointer)
{
mps_pool_t pool = malloc(4096);
mps_pool_destroy(pool);
}
int main(void)
{
run_test(test);
return 0;
}