Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fuzz_out (0.16 sec)

  1. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    	}
    	f := os.NewFile(fuzzOutFD, "fuzz_out")
    	if _, err := f.Write([]byte("!!")); err != nil {
    		tb.Fatalf("writing fuzz_out: %v", err)
    	}
    }
    -- io_error_notwindows_test.go --
    // +build !windows
    
    package io_error
    
    import (
    	"os"
    	"testing"
    )
    
    func sendGarbageToCoordinator(tb testing.TB) {
    	f := os.NewFile(4, "fuzz_out")
    	if _, err := f.Write([]byte("!!")); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/fuzz/sys_windows.go

    		return workerComm{}, fmt.Errorf("parsing GO_TEST_FUZZ_WORKER_HANDLES=%s: %v", v, err)
    	}
    
    	fuzzIn := os.NewFile(fuzzInFD, "fuzz_in")
    	fuzzOut := os.NewFile(fuzzOutFD, "fuzz_out")
    	memFile := os.NewFile(memFileFD, "fuzz_mem")
    	fi, err := memFile.Stat()
    	if err != nil {
    		return workerComm{}, fmt.Errorf("worker checking temp file size: %w", err)
    	}
    	size := int(fi.Size())
    	if int64(size) != fi.Size() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top