-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters