We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b8640 commit 9270973Copy full SHA for 9270973
src/runtime/crash_cgo_test.go
@@ -137,6 +137,10 @@ func TestCgoExecSignalMask(t *testing.T) {
137
138
func TestEnsureDropM(t *testing.T) {
139
// Test for issue 13881.
140
+ switch runtime.GOOS {
141
+ case "windows", "plan9":
142
+ t.Skipf("skipping dropm test on %s", runtime.GOOS)
143
+ }
144
got := runTestProg(t, "testprogcgo", "EnsureDropM")
145
want := "OK\n"
146
if got != want {
src/runtime/testdata/testprogcgo/dropm.go
@@ -2,6 +2,8 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
+// +build !plan9,!windows
6
+
7
// Test that a sequence of callbacks from C to Go get the same m.
8
// This failed to be true on arm and arm64, which was the root cause
9
// of issue 13881.
0 commit comments