diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/agljobtemplate.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py index c25dc9f..456f43e 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -184,8 +184,11 @@ class Agljobtemplate(object): if section[0] == "test_plan": tests = ast.literal_eval(section[1]) + if 'all' in tests: tests = self.tests + if machine == 'qemuarm' or machine == 'qemuarm64': + tests.insert(0, "fixup-weston-watchdog") for t in tests: if machine == 'bbe' and t == 'screenshooter': continue |