summaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue1435.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/test/issue1435.go')
-rw-r--r--misc/cgo/test/issue1435.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/cgo/test/issue1435.go b/misc/cgo/test/issue1435.go
index 91db155c90..3fb721ac39 100644
--- a/misc/cgo/test/issue1435.go
+++ b/misc/cgo/test/issue1435.go
@@ -10,6 +10,7 @@ package cgotest
import (
"fmt"
"os"
+ "runtime"
"sort"
"strings"
"syscall"
@@ -145,6 +146,11 @@ func test1435(t *testing.T) {
if syscall.Getuid() != 0 {
t.Skip("skipping root only test")
}
+ if runtime.GOOS == "linux" {
+ if _, err := os.Stat("/etc/alpine-release"); err == nil {
+ t.Skip("skipping failing test on alpine - go.dev/issue/19938")
+ }
+ }
// Launch some threads in C.
const cts = 5