]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/issue24161_darwin_test.go
misc/cgo/test: add cgo build constraints
[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 //go:build cgo
6
7 package cgotest
8
9 import (
10         "testing"
11
12         "misc/cgo/test/issue24161arg"
13         "misc/cgo/test/issue24161e0"
14         "misc/cgo/test/issue24161e1"
15         "misc/cgo/test/issue24161e2"
16         "misc/cgo/test/issue24161res"
17 )
18
19 func Test24161Arg(t *testing.T) {
20         issue24161arg.Test(t)
21 }
22 func Test24161Res(t *testing.T) {
23         issue24161res.Test(t)
24 }
25 func Test24161Example0(t *testing.T) {
26         issue24161e0.Test(t)
27 }
28 func Test24161Example1(t *testing.T) {
29         issue24161e1.Test(t)
30 }
31 func Test24161Example2(t *testing.T) {
32         issue24161e2.Test(t)
33 }