From ecf28dc3e6f8b2b00a16a988956f9ba421d503ed Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Tue, 21 Mar 2017 15:41:08 +0100 Subject: [PATCH] eve_fp: fix unittests we need the HOSTCMD task to pass the unittests. Signed-off-by: Vincent Palatin BRANCH=none BUG=b:35648258 TEST='make BOARD=eve_fp tests' and 'emerge-eve chromeos-ec' Change-Id: I37ce99c46ec9013806f87ee61b5a5faac0802482 Reviewed-on: https://chromium-review.googlesource.com/457536 Tested-by: Vincent Palatin Trybot-Ready: Vincent Palatin Reviewed-by: Duncan Laurie Commit-Queue: Vincent Palatin --- board/eve_fp/ec.tasklist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/eve_fp/ec.tasklist b/board/eve_fp/ec.tasklist index 7975f145a3..95b1b7ea9d 100644 --- a/board/eve_fp/ec.tasklist +++ b/board/eve_fp/ec.tasklist @@ -19,6 +19,6 @@ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ TASK_ALWAYS(FPC1140, fp_task, NULL, TASK_STACK_SIZE) \ - TASK_NOTEST(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \ + TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \ TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE)