Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGoNil (0.12 sec)

  1. src/runtime/crash_test.go

    				t.Errorf("non-nil recover during Goexit")
    			}
    			c <- struct{}{}
    		}()
    		runtime.Goexit()
    	}()
    	// Note: if the defer fails to run, we will get a deadlock here
    	<-c
    }
    
    func TestGoNil(t *testing.T) {
    	output := runTestProg(t, "testprog", "GoNil")
    	want := "go of nil func value"
    	if !strings.Contains(output, want) {
    		t.Fatalf("output:\n%s\n\nwant output containing: %s", output, want)
    	}
    }
    
    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