From 13b9cb319fc58d7e70ca2c81430da343957880f2 Mon Sep 17 00:00:00 2001 From: Valentin Schneider <valentin.schneider@arm.com> Date: Fri, 19 Jan 2018 17:24:15 +0000 Subject: [PATCH] utils/executor: Don't freeze 'dbus' on Linux targets Freezing this process wouldn't cause any critical crash, but it would make the tests last much longer than needed (e.g. 1 minute for a 5 seconds rt-app task). --- libs/utils/executor.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libs/utils/executor.py b/libs/utils/executor.py index 543a89036..f81d1f1b7 100644 --- a/libs/utils/executor.py +++ b/libs/utils/executor.py @@ -176,7 +176,15 @@ class Executor(): """ critical_tasks = { - 'linux': ['init', 'systemd', 'sh', 'ssh', 'rsyslogd', 'jbd2'], + 'linux': [ + 'init', + 'systemd', + 'dbus', + 'sh', + 'ssh', + 'rsyslogd', + 'jbd2' + ], 'android': [ 'sh', 'adbd', 'usb', 'transport', -- GitLab