Skip to content

Commit

Permalink
Ignore test on vinyl
Browse files Browse the repository at this point in the history
From: golang/go#39857

This test always fails on musl, because certain things behave differently to glibc. So... sod it, ignore the test
  • Loading branch information
jspc committed Feb 12, 2021
1 parent 0e53b6c commit 8443dfa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions go/1.15.8/disable-sigsetxid-test.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
--- /misc/cgo/test/testdata/issue9400_linux.go.orig 2021-02-12 12:45:02.000000000 +0900
+++ /misc/cgo/test/testdata/issue9400_linux.go 2021-02-12 12:45:27.000000000 +0900
@@ -19,9 +19,12 @@
"testing"

"cgotest/issue9400"
+ "internal/testenv"
)

func test9400(t *testing.T) {
+ testenv.SkipFlaky(t, 39857)
+
// We synchronize through a shared variable, so we need two procs
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(2))

2 changes: 1 addition & 1 deletion go/1.15.8/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ workingDir = "go-go1.15.8"
configure = "echo skip"
compile = "echo skip"
install = "{{ .ManifestDir }}/install.sh"
patches = ["disable-flaky-sync-test.patch", "disable-flaky-gc-test.patch", "fix-setrlimit-hang.patch"]
patches = ["disable-flaky-sync-test.patch", "disable-flaky-gc-test.patch", "fix-setrlimit-hang.patch", "disable-sigsetxid-test.patch"]

[profiles]
[profiles.default]
Expand Down

0 comments on commit 8443dfa

Please sign in to comment.