cgo_test.go 634 B

123456789101112131415161718
  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package cgotest
  5. import "testing"
  6. // The actual test functions are in non-_test.go files
  7. // so that they can use cgo (import "C").
  8. // These wrappers are here for gotest to find.
  9. func Test8756(t *testing.T) { test8756(t) }
  10. func Test9026(t *testing.T) { test9026(t) }
  11. func Test9510(t *testing.T) { test9510(t) }
  12. func Test20266(t *testing.T) { test20266(t) }
  13. func Test26213(t *testing.T) { test26213(t) }
  14. func TestGCC68255(t *testing.T) { testGCC68255(t) }