diff options
| author | Michael Stapelberg <stapelberg@debian.org> | 2013-03-04 21:27:36 +0100 | 
|---|---|---|
| committer | Michael Stapelberg <michael@stapelberg.de> | 2013-03-04 21:27:36 +0100 | 
| commit | 04b08da9af0c450d645ab7389d1467308cfc2db8 (patch) | |
| tree | db247935fa4f2f94408edc3acd5d0d4f997aa0d8 /misc/cgo/test/cgo_test.go | |
| parent | 917c5fb8ec48e22459d77e3849e6d388f93d3260 (diff) | |
| download | golang-04b08da9af0c450d645ab7389d1467308cfc2db8.tar.gz | |
Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304
Diffstat (limited to 'misc/cgo/test/cgo_test.go')
| -rw-r--r-- | misc/cgo/test/cgo_test.go | 11 | 
1 files changed, 10 insertions, 1 deletions
| diff --git a/misc/cgo/test/cgo_test.go b/misc/cgo/test/cgo_test.go index 34beee69d..536fa507a 100644 --- a/misc/cgo/test/cgo_test.go +++ b/misc/cgo/test/cgo_test.go @@ -6,7 +6,7 @@ package cgotest  import "testing" -// The actual test functions are in non-_test.go files  +// The actual test functions are in non-_test.go files  // so that they can use cgo (import "C").  // These wrappers are here for gotest to find. @@ -16,6 +16,7 @@ func TestEnum(t *testing.T)                { testEnum(t) }  func TestAtol(t *testing.T)                { testAtol(t) }  func TestErrno(t *testing.T)               { testErrno(t) }  func TestMultipleAssign(t *testing.T)      { testMultipleAssign(t) } +func TestUnsignedInt(t *testing.T)         { testUnsignedInt(t) }  func TestCallback(t *testing.T)            { testCallback(t) }  func TestCallbackGC(t *testing.T)          { testCallbackGC(t) }  func TestCallbackPanic(t *testing.T)       { testCallbackPanic(t) } @@ -27,5 +28,13 @@ func Test1328(t *testing.T)                { test1328(t) }  func TestParallelSleep(t *testing.T)       { testParallelSleep(t) }  func TestSetEnv(t *testing.T)              { testSetEnv(t) }  func TestHelpers(t *testing.T)             { testHelpers(t) } +func TestLibgcc(t *testing.T)              { testLibgcc(t) } +func Test1635(t *testing.T)                { test1635(t) } +func TestPrintf(t *testing.T)              { testPrintf(t) } +func Test4029(t *testing.T)                { test4029(t) } +func TestBoolAlign(t *testing.T)           { testBoolAlign(t) } +func Test3729(t *testing.T)                { test3729(t) } +func Test3775(t *testing.T)                { test3775(t) } +func TestCthread(t *testing.T)             { testCthread(t) }  func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } | 
