1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

Run apss test in a client arena as well as vm arenas.

Copied from Perforce
 Change: 182416
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2013-06-03 12:19:55 +01:00
parent abdabf9c7b
commit 6c808aac63

View file

@ -10,6 +10,7 @@
#include "mpscmvff.h"
#include "mpscmvt.h"
#include "mpslib.h"
#include "mpsacl.h"
#include "mpsavm.h"
#include "testlib.h"
@ -201,6 +202,12 @@ int main(int argc, char *argv[])
testInArena(arena, bothOptions);
mps_arena_destroy(arena);
die(mps_arena_create(&arena, mps_arena_class_cl(),
testArenaSIZE, malloc(testArenaSIZE)),
"mps_arena_create");
testInArena(arena, bothOptions);
mps_arena_destroy(arena);
printf("%s: Conclusion: Failed to find any defects.\n", argv[0]);
return 0;
}