LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package cgotest | 5 package cgotest |
6 | 6 |
7 import "testing" | 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 // so that they can use cgo (import "C"). | 10 // so that they can use cgo (import "C"). |
(...skipping 18 matching lines...) Expand all Loading... |
29 func TestSetEnv(t *testing.T) { testSetEnv(t) } | 29 func TestSetEnv(t *testing.T) { testSetEnv(t) } |
30 func TestHelpers(t *testing.T) { testHelpers(t) } | 30 func TestHelpers(t *testing.T) { testHelpers(t) } |
31 func TestLibgcc(t *testing.T) { testLibgcc(t) } | 31 func TestLibgcc(t *testing.T) { testLibgcc(t) } |
32 func Test1635(t *testing.T) { test1635(t) } | 32 func Test1635(t *testing.T) { test1635(t) } |
33 func TestPrintf(t *testing.T) { testPrintf(t) } | 33 func TestPrintf(t *testing.T) { testPrintf(t) } |
34 func Test4029(t *testing.T) { test4029(t) } | 34 func Test4029(t *testing.T) { test4029(t) } |
35 func TestBoolAlign(t *testing.T) { testBoolAlign(t) } | 35 func TestBoolAlign(t *testing.T) { testBoolAlign(t) } |
36 func Test3729(t *testing.T) { test3729(t) } | 36 func Test3729(t *testing.T) { test3729(t) } |
37 func Test3775(t *testing.T) { test3775(t) } | 37 func Test3775(t *testing.T) { test3775(t) } |
38 func TestCthread(t *testing.T) { testCthread(t) } | 38 func TestCthread(t *testing.T) { testCthread(t) } |
| 39 func TestCallbackCallers(t *testing.T) { testCallbackCallers(t) } |
39 | 40 |
40 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } | 41 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } |
LEFT | RIGHT |