mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 15:21:51 -08:00
* Make sure all the test build and run. * Add output specifications to the passing tests. * New testset/conerr runs them all. Copied from Perforce Change: 187248 ServerID: perforce.ravenbrook.com
44 lines
703 B
C
44 lines
703 B
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = add to ld in destroyed arena
|
|
language = c
|
|
link = myfmt.o testlib.o
|
|
OUTPUT_SPEC
|
|
abort = true
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "testlib.h"
|
|
#include "mpscamc.h"
|
|
#include "myfmt.h"
|
|
|
|
static void test(void)
|
|
{
|
|
mps_arena_t arena;
|
|
mps_ld_s ld;
|
|
|
|
cdie(mps_arena_create(&arena, mps_arena_class_vm(), mmqaArenaSIZE), "create arena");
|
|
|
|
mps_ld_reset(&ld, arena);
|
|
comment("Reset ld.");
|
|
|
|
mps_ld_add(&ld, arena, &arena);
|
|
comment("Added to ld.");
|
|
|
|
report("isstale", "%d", mps_ld_isstale(&ld, arena, &arena));
|
|
|
|
mps_arena_destroy(arena);
|
|
comment("Destroyed arena.");
|
|
|
|
mps_ld_add(&ld, arena, &arena);
|
|
comment("Added to ld.");
|
|
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
easy_tramp(test);
|
|
return 0;
|
|
}
|
|
|