~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to misc/cgo/test/cgo_test.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-20 14:06:23 UTC
  • mfrom: (14.1.23 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130820140623-b414jfxi3m0qkmrq
Tags: 2:1.1.2-2ubuntu1
* Merge from Debian unstable (LP: #1211749, #1202027). Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - d/control,control.cross: Update Breaks/Replaces for Ubuntu
    versions to ensure smooth upgrades, regenerate control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
import "testing"
8
8
 
9
 
// The actual test functions are in non-_test.go files 
 
9
// The actual test functions are in non-_test.go files
10
10
// so that they can use cgo (import "C").
11
11
// These wrappers are here for gotest to find.
12
12
 
16
16
func TestAtol(t *testing.T)                { testAtol(t) }
17
17
func TestErrno(t *testing.T)               { testErrno(t) }
18
18
func TestMultipleAssign(t *testing.T)      { testMultipleAssign(t) }
 
19
func TestUnsignedInt(t *testing.T)         { testUnsignedInt(t) }
19
20
func TestCallback(t *testing.T)            { testCallback(t) }
20
21
func TestCallbackGC(t *testing.T)          { testCallbackGC(t) }
21
22
func TestCallbackPanic(t *testing.T)       { testCallbackPanic(t) }
27
28
func TestParallelSleep(t *testing.T)       { testParallelSleep(t) }
28
29
func TestSetEnv(t *testing.T)              { testSetEnv(t) }
29
30
func TestHelpers(t *testing.T)             { testHelpers(t) }
 
31
func TestLibgcc(t *testing.T)              { testLibgcc(t) }
 
32
func Test1635(t *testing.T)                { test1635(t) }
 
33
func TestPrintf(t *testing.T)              { testPrintf(t) }
 
34
func Test4029(t *testing.T)                { test4029(t) }
 
35
func TestBoolAlign(t *testing.T)           { testBoolAlign(t) }
 
36
func Test3729(t *testing.T)                { test3729(t) }
 
37
func Test3775(t *testing.T)                { test3775(t) }
 
38
func TestCthread(t *testing.T)             { testCthread(t) }
 
39
func TestCallbackCallers(t *testing.T)     { testCallbackCallers(t) }
 
40
func Test5227(t *testing.T)                { test5227(t) }
 
41
func TestCflags(t *testing.T)              { testCflags(t) }
30
42
 
31
43
func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) }