github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/misc/cgo/test/cgo_test.go (about) 1 // Copyright 2011 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 "testing" 8 9 // The actual test functions are in non-_test.go files 10 // so that they can use cgo (import "C"). 11 // These wrappers are here for gotest to find. 12 13 func TestAlign(t *testing.T) { testAlign(t) } 14 func TestConst(t *testing.T) { testConst(t) } 15 func TestEnum(t *testing.T) { testEnum(t) } 16 func TestAtol(t *testing.T) { testAtol(t) } 17 func TestErrno(t *testing.T) { testErrno(t) } 18 func TestMultipleAssign(t *testing.T) { testMultipleAssign(t) } 19 func TestUnsignedInt(t *testing.T) { testUnsignedInt(t) } 20 func TestCallback(t *testing.T) { testCallback(t) } 21 func TestCallbackGC(t *testing.T) { testCallbackGC(t) } 22 func TestCallbackPanic(t *testing.T) { testCallbackPanic(t) } 23 func TestCallbackPanicLoop(t *testing.T) { testCallbackPanicLoop(t) } 24 func TestCallbackPanicLocked(t *testing.T) { testCallbackPanicLocked(t) } 25 func TestPanicFromC(t *testing.T) { testPanicFromC(t) } 26 func TestZeroArgCallback(t *testing.T) { testZeroArgCallback(t) } 27 func TestBlocking(t *testing.T) { testBlocking(t) } 28 func Test1328(t *testing.T) { test1328(t) } 29 func TestParallelSleep(t *testing.T) { testParallelSleep(t) } 30 func TestSetEnv(t *testing.T) { testSetEnv(t) } 31 func TestHelpers(t *testing.T) { testHelpers(t) } 32 func TestLibgcc(t *testing.T) { testLibgcc(t) } 33 func Test1635(t *testing.T) { test1635(t) } 34 func TestPrintf(t *testing.T) { testPrintf(t) } 35 func Test4029(t *testing.T) { test4029(t) } 36 func TestBoolAlign(t *testing.T) { testBoolAlign(t) } 37 func Test3729(t *testing.T) { test3729(t) } 38 func Test3775(t *testing.T) { test3775(t) } 39 func TestCthread(t *testing.T) { testCthread(t) } 40 func TestCallbackCallers(t *testing.T) { testCallbackCallers(t) } 41 func Test5227(t *testing.T) { test5227(t) } 42 func TestCflags(t *testing.T) { testCflags(t) } 43 func Test5337(t *testing.T) { test5337(t) } 44 func Test5548(t *testing.T) { test5548(t) } 45 func Test5603(t *testing.T) { test5603(t) } 46 func Test3250(t *testing.T) { test3250(t) } 47 func TestCallbackStack(t *testing.T) { testCallbackStack(t) } 48 func TestFpVar(t *testing.T) { testFpVar(t) } 49 func Test4339(t *testing.T) { test4339(t) } 50 func Test6390(t *testing.T) { test6390(t) } 51 func Test5986(t *testing.T) { test5986(t) } 52 func TestNaming(t *testing.T) { testNaming(t) } 53 54 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) }