Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkCoordLog (0.14 sec)

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

    func main() {
    	coordPath, workerPath := os.Args[1], os.Args[2]
    
    	coordLog, err := os.Open(coordPath)
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	defer coordLog.Close()
    	if err := checkCoordLog(coordLog); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    
    	workerLog, err := os.Open(workerPath)
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top