]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/runtime/crash_cgo_test.go
Revert "runtime/cgo: store M for C-created thread in pthread key"
[gostls13.git] / src / runtime / crash_cgo_test.go
index 9efe202085d354898df7c908e12e527867cf7fb0..f4126d23371c87dd8d10215c4c7acdae4bd9ca05 100644 (file)
@@ -836,16 +836,3 @@ func TestDestructorCallbackRace(t *testing.T) {
                t.Errorf("expected %q, but got:\n%s", want, got)
        }
 }
-
-func TestEnsureBindM(t *testing.T) {
-       t.Parallel()
-       switch runtime.GOOS {
-       case "windows", "plan9":
-               t.Skipf("skipping bindm test on %s", runtime.GOOS)
-       }
-       got := runTestProg(t, "testprogcgo", "EnsureBindM")
-       want := "OK\n"
-       if got != want {
-               t.Errorf("expected %q, got %v", want, got)
-       }
-}