Lines Matching full:iterations
326 def execute(self, iterations=None, test_length=None, profile_only=None,
339 @param iterations: A number of iterations that we'll run the run_once
343 @param profile_only: If true run X iterations with profilers enabled.
344 If false run X iterations and one with profiling if profiles are
354 # profilers to run during the test iterations. Let's reserve only
362 # If the user called this test in an odd way (specified both iterations
364 if iterations and test_length:
365 logging.debug('Iterations parameter ignored (timed execution)')
384 logging.debug('Test finished after %d iterations, '
387 if iterations is None:
388 iterations = 1
389 if iterations > 1:
390 logging.debug('Test started. Specified %d iterations',
391 iterations)
392 for self.iteration in xrange(1, iterations + 1):
393 if iterations > 1:
395 self.iteration, iterations)
595 @iterations: Number of subtest iterations.