Lines Matching refs:test_spec
69 for test_spec in test_specs:
72 bot_id_tag = 'id:%s' % test_spec.bot_id
75 tasks = [t for t in all_tasks if t['name']==test_spec.test.name]
78 not_yet_scheduled.append(test_spec)
84 remaining_retries = test_spec.test.job_retries - len(tasks)
90 test_spec=test_spec,
144 for test_spec in test_specs:
146 test_spec,
153 test_spec=test_spec,
154 remaining_retries=test_spec.test.job_retries - 1,
158 def _create_test_task(test_spec, suite_id=None, argument
168 logging.info('Creating task for test %s', test_spec.test.name)
173 '-board', test_spec.board,
174 '-image', test_spec.build,
179 if test_spec.pool:
181 autotest_pool_label = 'pool:%s' % test_spec.pool
186 if test_spec.model:
187 cmd += ['-model', test_spec.model]
188 if test_spec.quota_account:
189 cmd += ['-qs-account', test_spec.quota_account]
190 if test_spec.test.test_type.lower() == 'client':
193 tags = _compute_tags(test_spec.build, suite_id)
195 test_spec.bot_id, test_spec.test.dependencies)
196 keyvals_flat = _compute_job_keyvals_flat(test_spec.keyvals, suite_id)
202 cmd += [test_spec.test.name]
332 last_retry_spec.test_spec.test.name,
335 last_retry_spec.test_spec,
343 test_spec=last_retry_spec.test_spec,