Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPipeEOF (0.21 sec)

  1. src/os/fifo_test.go

    	if err != nil {
    		t.Error(err)
    	}
    
    	r := <-rc
    	if t.Failed() {
    		if r != nil {
    			r.Close()
    		}
    		if w != nil {
    			w.Close()
    		}
    		return
    	}
    
    	testPipeEOF(t, r, w)
    }
    
    // Issue #59545.
    func TestNonPollable(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping test with tight loops in short mode")
    	}
    
    	// We need to open a non-pollable file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top