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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 func TestCflags(t *testing.T) { testCflags(t) } | 42 func TestCflags(t *testing.T) { testCflags(t) } |
43 func Test5337(t *testing.T) { test5337(t) } | 43 func Test5337(t *testing.T) { test5337(t) } |
44 func Test5548(t *testing.T) { test5548(t) } | 44 func Test5548(t *testing.T) { test5548(t) } |
45 func Test5603(t *testing.T) { test5603(t) } | 45 func Test5603(t *testing.T) { test5603(t) } |
46 func Test3250(t *testing.T) { test3250(t) } | 46 func Test3250(t *testing.T) { test3250(t) } |
47 func TestCallbackStack(t *testing.T) { testCallbackStack(t) } | 47 func TestCallbackStack(t *testing.T) { testCallbackStack(t) } |
48 func TestFpVar(t *testing.T) { testFpVar(t) } | 48 func TestFpVar(t *testing.T) { testFpVar(t) } |
49 func Test4339(t *testing.T) { test4339(t) } | 49 func Test4339(t *testing.T) { test4339(t) } |
50 func Test6390(t *testing.T) { test6390(t) } | 50 func Test6390(t *testing.T) { test6390(t) } |
51 func Test5986(t *testing.T) { test5986(t) } | 51 func Test5986(t *testing.T) { test5986(t) } |
| 52 func TestNaming(t *testing.T) { testNaming(t) } |
52 | 53 |
53 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } | 54 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } |
OLD | NEW |