Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCgoCallbackGC (0.17 sec)

  1. src/runtime/crash_cgo_test.go

    func TestCgoTraceback(t *testing.T) {
    	t.Parallel()
    	got := runTestProg(t, "testprogcgo", "CgoTraceback")
    	want := "OK\n"
    	if got != want {
    		t.Fatalf("expected %q, but got:\n%s", want, got)
    	}
    }
    
    func TestCgoCallbackGC(t *testing.T) {
    	t.Parallel()
    	switch runtime.GOOS {
    	case "plan9", "windows":
    		t.Skipf("no pthreads on %s", runtime.GOOS)
    	}
    	if testing.Short() {
    		switch {
    		case runtime.GOOS == "dragonfly":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top