mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 23:31:55 -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
37 lines
489 B
C
37 lines
489 B
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = cause segv and see if has usual effect
|
|
language = c
|
|
link = testlib.o
|
|
OUTPUT_SPEC
|
|
memoryerror = true
|
|
END_HEADER
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "mps.h"
|
|
#include "testlib.h"
|
|
|
|
void *stackpointer;
|
|
|
|
static void test(void)
|
|
{
|
|
mps_arena_t arena;
|
|
int *p;
|
|
|
|
cdie(mps_arena_create(&arena, mps_arena_class_vm(), mmqaArenaSIZE), "create arena");
|
|
|
|
p = NULL;
|
|
printf("%i", *p);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
void *m;
|
|
stackpointer=&m;
|
|
|
|
easy_tramp(test);
|
|
return 0;
|
|
}
|
|
|