Lines Matching full:suite
42 // full benchmark suite has run to completion. If latency is set to 0
79 // Defines global benchsuite running mode that overrides benchmark suite
129 var suite = suites[index++];
130 if (runner.NotifyStart) runner.NotifyStart(suite.name);
131 if (skipBenchmarks.indexOf(suite.name) > -1) {
132 suite.NotifySkipped(runner);
134 continuation = suite.RunStep(runner);
215 // the benchmark suite. This can be useful to report progress.
222 // Notifies the runner that we're done with running a suite and that
313 // This function starts running a suite, but stops between each
314 // individual benchmark in the suite and returns a continuation
323 var suite = this;
333 suite.benchmarks[index].Setup();
335 suite.NotifyError(e);
340 suite.NotifyResult();
346 data = suite.RunSingleBenchmark(suite.benchmarks[index], data);
348 suite.NotifyError(e);
357 suite.benchmarks[index++].TearDown();
359 suite.NotifyError(e);