summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/build.mk1
-rw-r--r--test/fpsensor_hw.c27
-rw-r--r--test/fpsensor_hw.tasklist9
-rwxr-xr-xtest/run_device_tests.py2
4 files changed, 39 insertions, 0 deletions
diff --git a/test/build.mk b/test/build.mk
index 9dd576aa41..d0dd3eab25 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -146,6 +146,7 @@ flash_physical-y=flash_physical.o
flash_write_protect-y=flash_write_protect.o
fpsensor-y=fpsensor.o
fpsensor_crypto-y=fpsensor_crypto.o
+fpsensor_hw-y=fpsensor_hw.o
fpsensor_state-y=fpsensor_state.o
gyro_cal-y=gyro_cal.o gyro_cal_init_for_test.o
hooks-y=hooks.o
diff --git a/test/fpsensor_hw.c b/test/fpsensor_hw.c
new file mode 100644
index 0000000000..1ca4a9f505
--- /dev/null
+++ b/test/fpsensor_hw.c
@@ -0,0 +1,27 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "common.h"
+#include "test_util.h"
+#include "fpc_private.h"
+
+/* Hardware-dependent smoke test that makes a SPI transaction with the
+ * fingerprint sensor.
+ */
+test_static int test_fp_check_hwid(void)
+{
+ /* TODO(b/187134801): modify fpc_check_hwid() to return the hwid. */
+ if (IS_ENABLED(SECTION_IS_RW))
+ TEST_EQ(fpc_check_hwid(), EC_SUCCESS, "%d");
+
+ return EC_SUCCESS;
+}
+
+
+void run_test(int argc, char **argv)
+{
+ RUN_TEST(test_fp_check_hwid);
+ test_print_result();
+}
diff --git a/test/fpsensor_hw.tasklist b/test/fpsensor_hw.tasklist
new file mode 100644
index 0000000000..299cf25390
--- /dev/null
+++ b/test/fpsensor_hw.tasklist
@@ -0,0 +1,9 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/**
+ * See CONFIG_TASK_LIST in config.h for details.
+ */
+#define CONFIG_TEST_TASK_LIST
diff --git a/test/run_device_tests.py b/test/run_device_tests.py
index 4bc4b020ea..7a9730286e 100755
--- a/test/run_device_tests.py
+++ b/test/run_device_tests.py
@@ -123,6 +123,8 @@ class AllTests:
TestConfig(name='flash_write_protect',
image_to_use=ImageType.RO,
toggle_power=True, enable_hw_write_protect=True),
+ 'fpsensor_hw':
+ TestConfig(name='fpsensor_hw'),
'fpsensor_spi_ro':
TestConfig(name='fpsensor', image_to_use=ImageType.RO,
test_args=['spi']),