File tree 1 file changed +1
-14
lines changed
src/cmd/cgo/internal/test 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 7
7
package cgotest
8
8
9
9
import (
10
- "os"
11
10
"runtime"
12
11
"testing"
13
12
)
@@ -16,30 +15,18 @@ func TestSetgid(t *testing.T) {
16
15
if runtime .GOOS == "android" {
17
16
t .Skip ("unsupported on Android" )
18
17
}
19
- if _ , err := os .Stat ("/etc/alpine-release" ); err == nil {
20
- t .Skip ("setgid is broken with musl libc - go.dev/issue/39857" )
21
- }
22
18
testSetgid (t )
23
19
}
24
20
25
21
func TestSetgidStress (t * testing.T ) {
26
22
if runtime .GOOS == "android" {
27
23
t .Skip ("unsupported on Android" )
28
24
}
29
- if _ , err := os .Stat ("/etc/alpine-release" ); err == nil {
30
- t .Skip ("setgid is broken with musl libc - go.dev/issue/39857" )
31
- }
32
25
testSetgidStress (t )
33
26
}
34
27
35
28
func Test1435 (t * testing.T ) { test1435 (t ) }
36
29
func Test6997 (t * testing.T ) { test6997 (t ) }
37
-
38
- func Test9400 (t * testing.T ) {
39
- if _ , err := os .Stat ("/etc/alpine-release" ); err == nil {
40
- t .Skip ("setgid is broken with musl libc - go.dev/issue/39857" )
41
- }
42
- test9400 (t )
43
- }
30
+ func Test9400 (t * testing.T ) { test9400 (t ) }
44
31
45
32
func TestBuildID (t * testing.T ) { testBuildID (t ) }
You can’t perform that action at this time.
0 commit comments