summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2012-07-01 20:16:43 +0800
committerGerrit <chrome-bot@google.com>2012-07-02 01:48:27 -0700
commit1c0f99d13f8bae1cf25e268364ea2749cee49d01 (patch)
tree9b1fe4069a34e90e1a80c66e60c6dafd7860952a /test
parentf4297440050a9fcedad96645ae9ee1606f61bbd0 (diff)
downloadchrome-ec-1c0f99d13f8bae1cf25e268364ea2749cee49d01.tar.gz
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 <rongchang@chromium.org> Commit-Ready: Vic Yang <victoryang@chromium.org> Tested-by: Vic Yang <victoryang@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/hello.tasklist1
-rw-r--r--test/kb_debounce.tasklist1
-rw-r--r--test/kb_deghost.tasklist1
-rw-r--r--test/mutex.tasklist1
-rw-r--r--test/pingpong.tasklist1
-rw-r--r--test/power_button.tasklist1
-rw-r--r--test/thermal.tasklist1
-rw-r--r--test/timer_calib.tasklist1
-rw-r--r--test/timer_dos.tasklist1
-rw-r--r--test/timer_jump.tasklist1
10 files changed, 10 insertions, 0 deletions
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)