mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 07:41:28 -08:00
$HopeName$ -> $Id$ space -> arena mps_arena_create now takes three arguments /usr/local/perl -> /usr/bin/perl -w Missing #include <stdio.h> in several tests Bogus closedir(DIR); in script/clib Copied from Perforce Change: 182199 ServerID: perforce.ravenbrook.com
56 lines
837 B
C
56 lines
837 B
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = destroy a format though uncreated
|
|
language = c
|
|
link = testlib.o
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "testlib.h"
|
|
#include "mpscmv.h"
|
|
|
|
static void zilch(void)
|
|
{
|
|
}
|
|
|
|
|
|
static mps_addr_t myskip(mps_addr_t object)
|
|
{
|
|
return object;
|
|
}
|
|
|
|
static void test(void)
|
|
{
|
|
mps_arena_t arena;
|
|
mps_fmt_t format;
|
|
mps_fmt_A_s fmtA;
|
|
|
|
|
|
cdie(mps_arena_create(&arena, mps_arena_class_vm(), mmqaArenaSIZE), "create arena");
|
|
|
|
fmtA.align = (mps_align_t) 1;
|
|
fmtA.scan = &zilch;
|
|
fmtA.skip = &myskip;
|
|
fmtA.copy = &zilch;
|
|
fmtA.fwd = &zilch;
|
|
fmtA.isfwd = &zilch;
|
|
fmtA.pad = &zilch;
|
|
|
|
/* cdie(
|
|
mps_fmt_create_A(&format, arena, &fmtA),
|
|
"create format");
|
|
*/
|
|
|
|
mps_fmt_destroy(format);
|
|
comment("Destroyed format.");
|
|
|
|
mps_arena_destroy(arena);
|
|
comment("Destroyed arena.");
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
easy_tramp(test);
|
|
return 0;
|
|
}
|