mirror of
https://github.com/golang/go.git
synced 2025-05-05 23:53:05 +00:00
This moves the remaining cgo tests. For #37486. Change-Id: I99dea5a312a1974de338461a8b02242e5c1bae62 Reviewed-on: https://go-review.googlesource.com/c/go/+/492721 Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Bryan Mills <bcmills@google.com>
22 lines
452 B
C
22 lines
452 B
C
// 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.
|
|
|
|
//go:build gccgo
|
|
|
|
#include "_cgo_export.h"
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* Test calling panic from C. This is what SWIG does. */
|
|
|
|
extern void _cgo_panic(const char *);
|
|
extern void *_cgo_allocate(size_t);
|
|
|
|
void
|
|
callPanic(void)
|
|
{
|
|
_cgo_panic("panic from C");
|
|
}
|