summaryrefslogtreecommitdiff
path: root/test/thermal.c
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2013-09-01 12:09:06 +0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-09-04 20:32:49 +0000
commit04d8465b7550f9752454985f5bcafd3c61da8ee4 (patch)
tree1a6414388823d4f58d6e1b43bffa86351f2ec063 /test/thermal.c
parentf2046ce3dc510b7c5c2673d291d199cae70fb9d1 (diff)
downloadchrome-ec-04d8465b7550f9752454985f5bcafd3c61da8ee4.tar.gz
Also test temp sensor read delegation in thermal test
Temperature sensor read is delegated to functions defined in board.c. Let's mock that function instead of the one in temp_sensor module. BUG=chrome-os-partner:19236 TEST=Pass thermal test. BRANCH=None Change-Id: Ic0387bd6a49e3f032e593c11c6f80bd36f8474e7 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/167761 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'test/thermal.c')
-rw-r--r--test/thermal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/thermal.c b/test/thermal.c
index 7b2e3f9976..fb10b1cd1e 100644
--- a/test/thermal.c
+++ b/test/thermal.c
@@ -37,10 +37,10 @@ static int cpu_shutdown;
static int fan_pct;
static int no_temps_read;
-int temp_sensor_read(enum temp_sensor_id id, int *temp_ptr)
+int dummy_temp_get_val(int idx, int *temp_ptr)
{
- if (mock_temp[id] >= 0) {
- *temp_ptr = mock_temp[id];
+ if (mock_temp[idx] >= 0) {
+ *temp_ptr = mock_temp[idx];
return EC_SUCCESS;
}