From 83b92939bf2eea8f1eebee6afd6a256be9a31977 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Thu, 6 May 2021 11:44:36 +0000 Subject: 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 --- utils/agljobtemplate.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'utils') 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: -- cgit 1.2.3-korg