Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3508)

Delta Between Two Patch Sets: misc/cgo/test/cgo_test.go

Issue 9835047: code review 9835047: cmd/cgo: Add support for C function pointers (Closed)
Left Patch Set: diff -r 1faca3687fe6 https://code.google.com/p/go Created 10 years, 10 months ago
Right Patch Set: diff -r d881cb1ffc14 https://code.google.com/p/go Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | misc/cgo/test/fpvar.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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 26 matching lines...) Expand all
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 func Test5603(t *testing.T) { test5603(t) }
45 func Test3250(t *testing.T) { test3250(t) } 45 func Test3250(t *testing.T) { test3250(t) }
46 func TestCallbackStack(t *testing.T) { testCallbackStack(t) } 46 func TestCallbackStack(t *testing.T) { testCallbackStack(t) }
47 func TestFpVar(t *testing.T) { testFpVar(t) }
47 48
48 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) } 49 func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b