summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2021-05-06 11:44:36 +0000
committerCorentin LABBE <clabbe@baylibre.com>2021-05-06 11:44:36 +0000
commit83b92939bf2eea8f1eebee6afd6a256be9a31977 (patch)
treebb4d970e2e77059111ad174dac09488793fdaa3c /utils
parent532522694f2dd5beac50cf68824a28f02d72eeae (diff)
SPEC-3904: Add BBE machine
This patchs adds the BBE machine template. Since this machine does not have HDMI output, the screenshot test is disabled for it. Change-Id: I1048a202b8ee998084fcb7b78441781aae4ee220 Bug-AGL: SPEC-3904 Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/agljobtemplate.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py
index 84c76a6..f9207a3 100644
--- a/utils/agljobtemplate.py
+++ b/utils/agljobtemplate.py
@@ -187,6 +187,8 @@ class Agljobtemplate(object):
if 'all' in tests:
tests = self.tests
for t in tests:
+ if machine == 'bbe' and t == 'screenshot':
+ continue
if t in self.tests:
test_templates.append(os.path.join(self.TESTS_DIR, t + '.jinja2'))
else: