cgo_linux_test.go 474 B

1234567891011121314151617181920
  1. // Copyright 2012 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 (
  6. "runtime"
  7. "testing"
  8. )
  9. func TestSetgid(t *testing.T) {
  10. if runtime.GOOS == "android" {
  11. t.Skip("unsupported on Android")
  12. }
  13. testSetgid(t)
  14. }
  15. func Test1435(t *testing.T) { test1435(t) }
  16. func Test6997(t *testing.T) { test6997(t) }
  17. func TestBuildID(t *testing.T) { testBuildID(t) }