aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_toolchains.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot_test_toolchains.py')
-rw-r--r--buildbot_test_toolchains.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index bc2c0566..c83f9d83 100644
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -198,6 +198,12 @@ class ToolchainComparator():
print ("trybot_image: %s" % trybot_image)
print ("vanilla_image: %s" % vanilla_image)
+ if len(trybot_image) == 0:
+ self._l.LogError("Unable to find trybot_image for %s!" % description)
+ return 1
+ if len(vanilla_image) == 0:
+ self._l.LogError("Unable to find vanilla image for %s!" % description)
+ return 1
if os.getlogin() == ROLE_ACCOUNT:
self._FinishSetup()