github.com/yukk001/go1.10.8@v0.0.0-20190813125351-6df2d3982e20/misc/cgo/test/issue24161_darwin_test.go (about) 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 "./issue24161arg" 11 "./issue24161e0" 12 "./issue24161e1" 13 "./issue24161e2" 14 "./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 }