From 1c0f99d13f8bae1cf25e268364ea2749cee49d01 Mon Sep 17 00:00:00 2001 From: Vic Yang Date: Sun, 1 Jul 2012 20:16:43 +0800 Subject: Fix compilation error of unit tests VBOOTHASH task is needed for all unit tests to compile. Let's add it to all task lists. BUG=none TEST=all test build success. Change-Id: I378cd8bcdced193fe4751b33881f7d14ec88c935 Reviewed-on: https://gerrit.chromium.org/gerrit/26532 Reviewed-by: Rong Chang Commit-Ready: Vic Yang Tested-by: Vic Yang --- test/hello.tasklist | 1 + test/kb_debounce.tasklist | 1 + test/kb_deghost.tasklist | 1 + test/mutex.tasklist | 1 + test/pingpong.tasklist | 1 + test/power_button.tasklist | 1 + test/thermal.tasklist | 1 + test/timer_calib.tasklist | 1 + test/timer_dos.tasklist | 1 + test/timer_jump.tasklist | 1 + 10 files changed, 10 insertions(+) (limited to 'test') diff --git a/test/hello.tasklist b/test/hello.tasklist index d0c0002bd9..43cd7841a5 100644 --- a/test/hello.tasklist +++ b/test/hello.tasklist @@ -15,4 +15,5 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(CONSOLE, console_task, NULL) diff --git a/test/kb_debounce.tasklist b/test/kb_debounce.tasklist index 5c97164904..996cceeacb 100644 --- a/test/kb_debounce.tasklist +++ b/test/kb_debounce.tasklist @@ -15,6 +15,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(PWM, pwm_task, NULL) \ TASK(TYPEMATIC, keyboard_typematic_task, NULL) \ TASK(X86POWER, x86_power_task, NULL) \ diff --git a/test/kb_deghost.tasklist b/test/kb_deghost.tasklist index b5dfe5163c..c949371ae5 100644 --- a/test/kb_deghost.tasklist +++ b/test/kb_deghost.tasklist @@ -15,6 +15,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(PWM, pwm_task, NULL) \ TASK(TYPEMATIC, keyboard_typematic_task, NULL) \ TASK(X86POWER, x86_power_task, NULL) \ diff --git a/test/mutex.tasklist b/test/mutex.tasklist index 92b2ae72d7..54ed049101 100644 --- a/test/mutex.tasklist +++ b/test/mutex.tasklist @@ -6,6 +6,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(CONSOLE, console_task, NULL) \ TASK(MTX3C, mutex_random_task, NULL) \ TASK(MTX3B, mutex_random_task, NULL) \ diff --git a/test/pingpong.tasklist b/test/pingpong.tasklist index dd95534238..28cc227280 100644 --- a/test/pingpong.tasklist +++ b/test/pingpong.tasklist @@ -6,6 +6,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(CONSOLE, console_task, NULL) \ TASK(TESTA, TaskAbc, (void *)'A') \ TASK(TESTB, TaskAbc, (void *)'B') \ diff --git a/test/power_button.tasklist b/test/power_button.tasklist index 293d200041..ac4c48dc2f 100644 --- a/test/power_button.tasklist +++ b/test/power_button.tasklist @@ -15,6 +15,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(PWM, pwm_task, NULL) \ TASK(TYPEMATIC, keyboard_typematic_task, NULL) \ TASK(X86POWER, x86_power_task, NULL) \ diff --git a/test/thermal.tasklist b/test/thermal.tasklist index 87f1d0d302..56d87219d6 100644 --- a/test/thermal.tasklist +++ b/test/thermal.tasklist @@ -15,6 +15,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(TEMPSENSOR, temp_sensor_task, NULL) \ TASK(THERMAL, thermal_task, NULL) \ TASK(PWM, pwm_task, NULL) \ diff --git a/test/timer_calib.tasklist b/test/timer_calib.tasklist index eee74b4df7..012931ab85 100644 --- a/test/timer_calib.tasklist +++ b/test/timer_calib.tasklist @@ -6,5 +6,6 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(TESTTMR, timer_calib_task, (void *)'T')\ TASK(CONSOLE, console_task, NULL) diff --git a/test/timer_dos.tasklist b/test/timer_dos.tasklist index 7fced26663..8361010247 100644 --- a/test/timer_dos.tasklist +++ b/test/timer_dos.tasklist @@ -6,6 +6,7 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(CONSOLE, console_task, NULL) \ TASK(TMRA, TaskTimer, (void *)1234) \ TASK(TMRB, TaskTimer, (void *)5678) \ diff --git a/test/timer_jump.tasklist b/test/timer_jump.tasklist index 652e8fb6bd..323ae2fe2d 100644 --- a/test/timer_jump.tasklist +++ b/test/timer_jump.tasklist @@ -15,5 +15,6 @@ */ #define CONFIG_TASK_LIST \ TASK(WATCHDOG, watchdog_task, NULL) \ + TASK(VBOOTHASH, vboot_hash_task, NULL) \ TASK(CONSOLE, console_task, NULL) \ TASK(HOSTCMD, host_command_task, NULL) -- cgit v1.2.1