Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for signalInVDSO (0.39 sec)

  1. src/runtime/crash_test.go

    			target.exe = exe
    			target.err = nil
    		}
    	})
    
    	return target.exe, target.err
    }
    
    func TestVDSO(t *testing.T) {
    	t.Parallel()
    	output := runTestProg(t, "testprog", "SignalInVDSO")
    	want := "success\n"
    	if output != want {
    		t.Fatalf("output:\n%s\n\nwanted:\n%s", output, want)
    	}
    }
    
    func testCrashHandler(t *testing.T, cgo bool) {
    	type crashTest struct {
    		Cgo bool
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top