Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestFifoEOF (0.08 sec)

  1. src/os/fifo_test.go

    package os_test
    
    import (
    	"errors"
    	"internal/syscall/unix"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strconv"
    	"sync"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func TestFifoEOF(t *testing.T) {
    	t.Parallel()
    
    	dir := t.TempDir()
    	fifoName := filepath.Join(dir, "fifo")
    	if err := syscall.Mkfifo(fifoName, 0600); err != nil {
    		t.Fatal(err)
    	}
    
    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