1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-27 01:01:52 -07:00
emacs/mps/test/conerr/54.c
Gareth Rees 5ed62f110b Get the mmqa conerr tests working:
* 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
2014-10-13 21:34:12 +01:00

47 lines
715 B
C

/*
TEST_HEADER
id = $Id$
summary = is_stale without resetting
language = c
link = myfmt.o testlib.o
OUTPUT_SPEC
assert = true
assertfile P= ld.c
assertcond = ld->_epoch <= arena->epoch
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.");
}
int main(void)
{
easy_tramp(test);
return 0;
}