mirror of
https://github.com/golang/go
synced 2024-11-18 10:34:51 -07:00
af64b75b67
We're about to move this package to cmd/cgo/internal, where it will get caught up in the "CGO_ENABLED=0 go install cmd" done by make.bash. Currently, building this package with CGO_ENABLED=0 fails because it contains several source files that don't themselves import "C", but do import a subdirectory where that package imports "C" and thus has no exported API. Fix the CGO_ENABLED=0 build of this package by adding the necessary cgo build tags. Not all source files need it, but this CL makes "CGO_ENABLED=0 go test -c" work in this package. For #37486. Change-Id: Id137cdfbdd950eea802413536d990ab642ebcd7e Reviewed-on: https://go-review.googlesource.com/c/go/+/493215 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Austin Clements <austin@google.com>
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
// Copyright 2012 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build cgo
|
|
|
|
package cgotest
|
|
|
|
import (
|
|
"os"
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func TestSetgid(t *testing.T) {
|
|
if runtime.GOOS == "android" {
|
|
t.Skip("unsupported on Android")
|
|
}
|
|
if _, err := os.Stat("/etc/alpine-release"); err == nil {
|
|
t.Skip("setgid is broken with musl libc - go.dev/issue/39857")
|
|
}
|
|
testSetgid(t)
|
|
}
|
|
|
|
func TestSetgidStress(t *testing.T) {
|
|
if runtime.GOOS == "android" {
|
|
t.Skip("unsupported on Android")
|
|
}
|
|
if _, err := os.Stat("/etc/alpine-release"); err == nil {
|
|
t.Skip("setgid is broken with musl libc - go.dev/issue/39857")
|
|
}
|
|
testSetgidStress(t)
|
|
}
|
|
|
|
func Test1435(t *testing.T) { test1435(t) }
|
|
func Test6997(t *testing.T) { test6997(t) }
|
|
|
|
func Test9400(t *testing.T) {
|
|
if _, err := os.Stat("/etc/alpine-release"); err == nil {
|
|
t.Skip("setgid is broken with musl libc - go.dev/issue/39857")
|
|
}
|
|
test9400(t)
|
|
}
|
|
|
|
func TestBuildID(t *testing.T) { testBuildID(t) }
|