1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00
emacs/mps/test/argerr/36.c
Gareth Rees e512989019 Argerr testset now passes.
Copied from Perforce
 Change: 187948
 ServerID: perforce.ravenbrook.com
2015-06-15 22:21:52 +01:00

51 lines
876 B
C

/*
TEST_HEADER
id = $Id$
summary = wrong size_t to free (MV)
language = c
link = testlib.o
OUTPUT_SPEC
assert = true
assertfile P= dbgpool.c
assertcond = tag->size == size
END_HEADER
*/
#include "testlib.h"
#include "mpscmv.h"
#include "arg.h"
void *stackpointer;
static void test(void)
{
mps_arena_t arena;
mps_pool_t pool;
mps_thr_t thread;
mps_addr_t a,b;
cdie(mps_arena_create(&arena, mps_arena_class_vm(), mmqaArenaSIZE), "create arena");
cdie(mps_thread_reg(&thread, arena), "register thread");
cdie(mps_pool_create_k(&pool, arena, mps_class_mv_debug(), mps_args_none),
"create pool");
die(mps_alloc(&a, pool, 8),
"alloc a");
die(mps_alloc(&b, pool, 32),
"alloc b");
mps_free(pool, a, 9);
mps_pool_destroy(pool);
}
int main(void)
{
void *m;
stackpointer=&m; /* hack to get stack pointer */
easy_tramp(test);
return 0;
}