diff --git a/validate/tools/launcher/utils.py b/validate/tools/launcher/utils.py index 8ae35bac08..d114e3f93c 100644 --- a/validate/tools/launcher/utils.py +++ b/validate/tools/launcher/utils.py @@ -228,11 +228,7 @@ def get_current_position(test, max_passed_stop=0.5): position, duration = _get_position(test) if position > duration + max_passed_stop: - test.set_result(Result.FAILED, - "The position is reported as > than the" - " duration (position: %d > duration: %d)" - % (position, duration)) - return Result.FAILED + return 0 return position