Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGetppid (0.14 sec)

  1. src/os/os_test.go

    func TestKillStartProcess(t *testing.T) {
    	testKillProcess(t, func(p *Process) {
    		err := p.Kill()
    		if err != nil {
    			t.Fatalf("Failed to kill test process: %v", err)
    		}
    	})
    }
    
    func TestGetppid(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		// TODO: golang.org/issue/8206
    		t.Skipf("skipping test on plan9; see issue 8206")
    	}
    
    	if Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top