1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-14 07:20:35 -08:00
emacs/mps/qa/conerr/0.c
Richard Tucker 78daa882d8 Add id to header
Copied from Perforce
 Change: 20306
 ServerID: perforce.ravenbrook.com
1998-10-29 12:46:01 +00:00

27 lines
424 B
C

/*
TEST_HEADER
id = $HopeName$
summary = create a space and then destroy it, twice!
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
static void test(void)
{
mps_space_t space;
cdie(mps_space_create(&space), "Create space");
mps_space_destroy(space);
comment("Destroy space once.");
mps_space_destroy(space);
comment("Destroy space twice!");
}
int main(void)
{
easy_tramp(test);
return 0;
}