diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index e05958a581..c76dc5e5bc 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -178,7 +178,10 @@ __bin_names = { } def binary_path(step, debug=False): - vehicle = step.split(".")[1] + try: + vehicle = step.split(".")[1] + except Exception: + return None if vehicle in __bin_names: binary_name = __bin_names[vehicle]