1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00
emacs/mps/test/conerr/8.c
Gareth Rees 9e5c14a5d1 Replace mv debug with mvff debug.
Remove some remaining occurrences of mpscvm.h.

Copied from Perforce
 Change: 194865
2018-08-02 14:20:23 +01:00

33 lines
498 B
C

/*
TEST_HEADER
id = $Id$
summary = create a format in an uncreated arena
language = c
link = testlib.o
OUTPUT_SPEC
assert = true
assertfile P= global.c
assertcond = TESTT(Arena, arena)
END_HEADER
*/
#include "testlib.h"
static void test(void)
{
mps_arena_t arena;
mps_fmt_t format;
arena=malloc(4096);
cdie(mps_fmt_create_k(&format, arena, mps_args_none), "create format");
mps_arena_destroy(arena);
comment("Destroy arena.");
}
int main(void)
{
easy_tramp(test);
return 0;
}