annotate libgo/misc/cgo/test/issue6390.go @ 133:420680fc7707

do normal call in goto codesegment in normal function
author anatofuz
date Sat, 03 Nov 2018 19:49:09 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // Copyright 2013 The Go Authors. All rights reserved.
kono
parents:
diff changeset
2 // Use of this source code is governed by a BSD-style
kono
parents:
diff changeset
3 // license that can be found in the LICENSE file.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 package cgotest
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 // #include <stdlib.h>
kono
parents:
diff changeset
8 import "C"
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 import "testing"
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 func test6390(t *testing.T) {
kono
parents:
diff changeset
13 p1 := C.malloc(1024)
kono
parents:
diff changeset
14 if p1 == nil {
kono
parents:
diff changeset
15 t.Fatalf("C.malloc(1024) returned nil")
kono
parents:
diff changeset
16 }
kono
parents:
diff changeset
17 p2 := C.malloc(0)
kono
parents:
diff changeset
18 if p2 == nil {
kono
parents:
diff changeset
19 t.Fatalf("C.malloc(0) returned nil")
kono
parents:
diff changeset
20 }
kono
parents:
diff changeset
21 C.free(p1)
kono
parents:
diff changeset
22 C.free(p2)
kono
parents:
diff changeset
23 }