mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
validate:launcher: Take ValidateAction execution as a marker of test update
This commit is contained in:
parent
40016b9956
commit
54a1fc8b30
1 changed files with 7 additions and 1 deletions
|
@ -523,8 +523,14 @@ class GstValidateListener(socketserver.BaseRequestHandler):
|
|||
test.set_position(obj['position'], 100)
|
||||
elif obj_type == 'action':
|
||||
test.add_action_execution(obj)
|
||||
# Make sure that action is taken into account when checking if process
|
||||
# is updating
|
||||
test.position += 1
|
||||
elif obj_type == 'action-done':
|
||||
self.actions_infos[-1]['execution-duration'] = obj['execution-duration']
|
||||
# Make sure that action end is taken into account when checking if process
|
||||
# is updating
|
||||
test.position += 1
|
||||
test.actions_infos[-1]['execution-duration'] = obj['execution-duration']
|
||||
elif obj_type == 'report':
|
||||
test.add_report(obj)
|
||||
|
||||
|
|
Loading…
Reference in a new issue