Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestRaceSubReports (1.78 sec)

  1. src/testing/testing_test.go

    		doRace()
    		return
    	}
    
    	out := runTest(t, "TestRaceName")
    
    	if regexp.MustCompile(`=== NAME\s*$`).Match(out) {
    		t.Errorf("incorrectly reported test with no name")
    	}
    }
    
    func TestRaceSubReports(t *testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		t.Parallel()
    		c1 := make(chan bool, 1)
    		t.Run("sub", func(t *testing.T) {
    			t.Run("subsub1", func(t *testing.T) {
    				t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top