]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/issue24161_darwin_test.go
misc/cgo/test: simplify for module mode
[gostls13.git] / misc / cgo / test / issue24161_darwin_test.go
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package cgotest
6
7 import (
8         "testing"
9
10         "misc/cgo/test/issue24161arg"
11         "misc/cgo/test/issue24161e0"
12         "misc/cgo/test/issue24161e1"
13         "misc/cgo/test/issue24161e2"
14         "misc/cgo/test/issue24161res"
15 )
16
17 func Test24161Arg(t *testing.T) {
18         issue24161arg.Test(t)
19 }
20 func Test24161Res(t *testing.T) {
21         issue24161res.Test(t)
22 }
23 func Test24161Example0(t *testing.T) {
24         issue24161e0.Test(t)
25 }
26 func Test24161Example1(t *testing.T) {
27         issue24161e1.Test(t)
28 }
29 func Test24161Example2(t *testing.T) {
30         issue24161e2.Test(t)
31 }