2013-10-11 12:24:54 -06:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build gccgo
|
|
|
|
|
|
|
|
#include "_cgo_export.h"
|
2014-09-16 09:03:11 -06:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-10-11 12:24:54 -06:00
|
|
|
|
|
|
|
/* Test calling panic from C. This is what SWIG does. */
|
|
|
|
|
|
|
|
extern void _cgo_panic(const char *);
|
2014-09-16 09:03:11 -06:00
|
|
|
extern void *_cgo_allocate(size_t);
|
2013-10-11 12:24:54 -06:00
|
|
|
|
|
|
|
void
|
|
|
|
callPanic(void)
|
|
|
|
{
|
|
|
|
_cgo_panic("panic from C");
|
|
|
|
}
|
2014-09-16 09:03:11 -06:00
|
|
|
|
|
|
|
/* Test calling cgo_allocate from C. This is what SWIG does. */
|
|
|
|
|
|
|
|
typedef struct List List;
|
|
|
|
struct List
|
|
|
|
{
|
|
|
|
List *next;
|
|
|
|
int x;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
callCgoAllocate(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
List *l, *head, **tail;
|
|
|
|
|
2014-10-07 14:27:40 -06:00
|
|
|
// Make sure this doesn't crash.
|
|
|
|
// And make sure it returns non-nil.
|
|
|
|
if(_cgo_allocate(0) == 0) {
|
|
|
|
fprintf(stderr, "callCgoAllocate: alloc 0 returned nil\n");
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
2014-09-16 09:03:11 -06:00
|
|
|
head = 0;
|
|
|
|
tail = &head;
|
|
|
|
for(i=0; i<100; i++) {
|
|
|
|
l = _cgo_allocate(sizeof *l);
|
|
|
|
l->x = i;
|
|
|
|
l->next = 0;
|
|
|
|
*tail = l;
|
|
|
|
tail = &l->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
gc();
|
|
|
|
|
|
|
|
l = head;
|
|
|
|
for(i=0; i<100; i++) {
|
|
|
|
if(l->x != i) {
|
|
|
|
fprintf(stderr, "callCgoAllocate: lost memory\n");
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
l = l->next;
|
|
|
|
}
|
|
|
|
if(l != 0) {
|
|
|
|
fprintf(stderr, "callCgoAllocate: lost memory\n");
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|