Home | History | Annotate | Download | only in benchmarks

Lines Matching full:suite

48 // full benchmark suite has run to completion.
116 var suite = suites[index++];
117 if (runner.NotifyStart) runner.NotifyStart(suite.name);
118 continuation = suite.RunStep(runner);
168 // the benchmark suite. This can be useful to report progress.
175 // Notifies the runner that we're done with running a suite and that
231 // This function starts running a suite, but stops between each
232 // individual benchmark in the suite and returns a continuation
240 var suite = this;
250 suite.benchmarks[index].Setup();
252 suite.NotifyError(e);
257 suite.NotifyResult();
263 data = suite.RunSingleBenchmark(suite.benchmarks[index], data);
265 suite.NotifyError(e);
274 suite.benchmarks[index++].TearDown();
276 suite.NotifyError(e);