OLD | NEW |
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 23 matching lines...) Expand all Loading... |
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 func TestCallbackCallers(t *testing.T) { testCallbackCallers(t) } |
40 func Test5227(t *testing.T) { test5227(t) } | 40 func Test5227(t *testing.T) { test5227(t) } |
41 func TestCflags(t *testing.T) { testCflags(t) } | 41 func TestCflags(t *testing.T) { testCflags(t) } |
42 func Test5337(t *testing.T) { test5337(t) } | 42 func Test5337(t *testing.T) { test5337(t) } |
43 func Test5548(t *testing.T) { test5548(t) } | 43 func Test5548(t *testing.T) { test5548(t) } |
| 44 func Test5603(t *testing.T) { test5603(t) } |
44 | 45 |
45 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } | 46 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } |
OLD | NEW |