Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testClosedPipeRace (0.2 sec)

  1. src/os/pipe_test.go

    	} else {
    		t.Logf("I/O returned expected error %q", err)
    	}
    }
    
    func TestClosedPipeRaceRead(t *testing.T) {
    	testClosedPipeRace(t, true)
    }
    
    func TestClosedPipeRaceWrite(t *testing.T) {
    	testClosedPipeRace(t, false)
    }
    
    // Issue 20915: Reading on nonblocking fd should not return "waiting
    // for unsupported file type." Currently it returns EAGAIN; it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    			runTests: "Output",
    			pkg:      "runtime/race",
    		})
    	t.registerTest(hdr,
    		&goTest{
    			variant:  "race",
    			race:     true,
    			runTests: "TestParse|TestEcho|TestStdinCloseRace|TestClosedPipeRace|TestTypeRace|TestFdRace|TestFdReadRace|TestFileCloseRace",
    			pkgs:     []string{"flag", "net", "os", "os/exec", "encoding/gob"},
    		})
    	// We don't want the following line, because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top