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"). |
11 // These wrappers are here for gotest to find. | 11 // These wrappers are here for gotest to find. |
12 | 12 |
13 func TestAlign(t *testing.T) { testAlign(t) } | 13 func TestAlign(t *testing.T) { testAlign(t) } |
14 func TestConst(t *testing.T) { testConst(t) } | 14 func TestConst(t *testing.T) { testConst(t) } |
15 func TestEnum(t *testing.T) { testEnum(t) } | 15 func TestEnum(t *testing.T) { testEnum(t) } |
16 func TestAtol(t *testing.T) { testAtol(t) } | 16 func TestAtol(t *testing.T) { testAtol(t) } |
17 func TestErrno(t *testing.T) { testErrno(t) } | 17 func TestErrno(t *testing.T) { testErrno(t) } |
18 func TestMultipleAssign(t *testing.T) { testMultipleAssign(t) } | 18 func TestMultipleAssign(t *testing.T) { testMultipleAssign(t) } |
| 19 func TestUnsignedInt(t *testing.T) { testUnsignedInt(t) } |
19 func TestCallback(t *testing.T) { testCallback(t) } | 20 func TestCallback(t *testing.T) { testCallback(t) } |
20 func TestCallbackGC(t *testing.T) { testCallbackGC(t) } | 21 func TestCallbackGC(t *testing.T) { testCallbackGC(t) } |
21 func TestCallbackPanic(t *testing.T) { testCallbackPanic(t) } | 22 func TestCallbackPanic(t *testing.T) { testCallbackPanic(t) } |
22 func TestCallbackPanicLoop(t *testing.T) { testCallbackPanicLoop(t) } | 23 func TestCallbackPanicLoop(t *testing.T) { testCallbackPanicLoop(t) } |
23 func TestCallbackPanicLocked(t *testing.T) { testCallbackPanicLocked(t) } | 24 func TestCallbackPanicLocked(t *testing.T) { testCallbackPanicLocked(t) } |
24 func TestZeroArgCallback(t *testing.T) { testZeroArgCallback(t) } | 25 func TestZeroArgCallback(t *testing.T) { testZeroArgCallback(t) } |
25 func TestBlocking(t *testing.T) { testBlocking(t) } | 26 func TestBlocking(t *testing.T) { testBlocking(t) } |
26 func Test1328(t *testing.T) { test1328(t) } | 27 func Test1328(t *testing.T) { test1328(t) } |
27 func TestParallelSleep(t *testing.T) { testParallelSleep(t) } | 28 func TestParallelSleep(t *testing.T) { testParallelSleep(t) } |
28 func TestSetEnv(t *testing.T) { testSetEnv(t) } | 29 func TestSetEnv(t *testing.T) { testSetEnv(t) } |
29 func TestHelpers(t *testing.T) { testHelpers(t) } | 30 func TestHelpers(t *testing.T) { testHelpers(t) } |
30 func TestLibgcc(t *testing.T) { testLibgcc(t) } | 31 func TestLibgcc(t *testing.T) { testLibgcc(t) } |
31 func Test1635(t *testing.T) { test1635(t) } | 32 func Test1635(t *testing.T) { test1635(t) } |
32 func TestPrintf(t *testing.T) { testPrintf(t) } | 33 func TestPrintf(t *testing.T) { testPrintf(t) } |
33 | 34 |
34 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } | 35 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } |
LEFT | RIGHT |