Home | History | Annotate | Download | only in testing

Lines Matching refs:Execution

7 // execution of any function of the form
47 // During benchmark execution, b.N is adjusted until the benchmark function lasts
177 coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to the named file after execution")
179 memProfile = flag.String("test.memprofile", "", "write a memory profile to the named file after execution")
181 cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to the named file during execution")
182 blockProfile = flag.String("test.blockprofile", "", "write a goroutine blocking profile to the named file after execution")
184 traceFile = flag.String("test.trace", "", "write an execution trace to the named file after execution")
284 // Logs are accumulated during execution and dumped to standard error when done.
293 // Fail marks the function as having failed but continues execution.
307 // FailNow marks the function as having failed and stops its execution.
308 // Execution will continue at the next test or benchmark.
394 // SkipNow marks the test as having been skipped and stops its execution.
395 // Execution will continue at the next test or benchmark. See also FailNow.