Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stressExec (0.12 sec)

  1. test/stress/runstress.go

    	if exit == 1 {
    		if err == nil {
    			log.Fatal("stressExec: unexpected exec success")
    		}
    		return
    	}
    	if err != nil {
    		log.Fatalf("stressExec: exec failure: %v: %s", err, out)
    	}
    	wantOutput += "\n"
    	if string(out) != wantOutput {
    		log.Fatalf("stressExec: exec output = %q; want %q", out, wantOutput)
    	}
    	Println("did exec")
    }
    
    func stressExec() {
    	gate := make(chan bool, 10) // max execs at once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top