OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:step_result
(Results
1 - 6
of
6
) sorted by null
/external/skia/infra/bots/recipe_modules/swarming_client/
api.py
97
step_result
= self.m.step.active_result
98
version =
step_result
.stdout.strip()
99
step_result
.presentation.step_text = version
102
return
step_result
118
step_result
= self.query_script_version(
127
step_result
= self.m.python.inline(
132
step_result
.presentation.status = self.m.step.FAILURE
133
step_result
.presentation.step_text = abort_reason
/external/skia/infra/bots/recipe_modules/isolate/
api.py
61
step_result
= self.m.python(
71
assert isinstance(
step_result
.json.output, dict)
72
self._isolated_tests =
step_result
.json.output
74
step_result
.presentation.status != self.m.step.FAILURE):
75
found = set(
step_result
.json.output)
80
target:
step_result
.json.output[target] for target in expected
84
step_result
.presentation.status = self.m.step.FAILURE
85
step_result
.presentation.logs['missing.isolates'] = (
87
step_result
.presentation.properties['swarm_hashes'] = self._isolated_tests
90
step_result
.presentation.status != self.m.step.FAILURE)
[
all
...]
/external/skia/infra/bots/recipe_modules/skia_swarming/
api.py
175
for
step_result
in step_results:
176
self._add_log_links(
step_result
,
step_result
.json.output)
188
step_result
= self.m.step.active_result
195
summary =
step_result
.swarming.summary
197
step_result
.presentation.status = self.m.step.EXCEPTION
198
raise self.m.step.InfraFailure(e.name,
step_result
)
201
step_result
= self.m.step.active_result
203
self._add_log_links(
step_result
,
step_result
.swarming.summary
[
all
...]
/external/skia/infra/bots/recipe_modules/swarming/examples/
full.py
82
step_result
= api.python(
95
isolated_hash =
step_result
.stdout.split()[0].strip()
112
step_result
= api.swarming.trigger_task(task)
113
assert
step_result
.swarming_task in tasks
121
step_result
= api.swarming.collect_task(task)
122
data =
step_result
.swarming.summary
128
assert
step_result
.swarming_task in tasks
/external/skia/infra/bots/recipe_modules/isolate/examples/
full.py
37
step_result
= api.step('read test spec', ['cat'], stdout=api.json.output())
38
expected_targets =
step_result
.stdout
/external/skia/infra/bots/recipe_modules/swarming/
api.py
526
step_result
= self.m.step.active_result
527
step_result
.presentation.step_text += text_for_task(task)
529
if
step_result
.presentation != self.m.step.FAILURE:
530
task._trigger_output =
step_result
.json.output
531
links =
step_result
.presentation.links
536
assert not hasattr(
step_result
, 'swarming_task')
537
step_result
.swarming_task = task
610
# so we can read out of it later w/
step_result
.raw_io.output_dir.
671
step_result
= None
673
step_result
= self.m.step.active_resul
[
all
...]
Completed in 93 milliseconds