summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/host_cmd/src/host_command.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/drivers/host_cmd/src/host_command.c')
-rw-r--r--zephyr/test/drivers/host_cmd/src/host_command.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/zephyr/test/drivers/host_cmd/src/host_command.c b/zephyr/test/drivers/host_cmd/src/host_command.c
index e1168648d9..7118fbaab1 100644
--- a/zephyr/test/drivers/host_cmd/src/host_command.c
+++ b/zephyr/test/drivers/host_cmd/src/host_command.c
@@ -9,7 +9,7 @@
#include <zephyr/ztest.h>
-ZTEST(host_cmd_host_commands, get_command_versions__v1)
+ZTEST(host_cmd_host_commands, test_get_command_versions__v1)
{
struct ec_response_get_cmd_versions response;
struct ec_params_get_cmd_versions_v1 params = {
@@ -23,7 +23,7 @@ ZTEST(host_cmd_host_commands, get_command_versions__v1)
zassert_equal(EC_VER_MASK(0) | EC_VER_MASK(1), response.version_mask);
}
-ZTEST(host_cmd_host_commands, get_command_versions__invalid_cmd)
+ZTEST(host_cmd_host_commands, test_get_command_versions__invalid_cmd)
{
struct ec_response_get_cmd_versions response;
struct ec_params_get_cmd_versions_v1 params = {
@@ -37,7 +37,7 @@ ZTEST(host_cmd_host_commands, get_command_versions__invalid_cmd)
zassert_equal(EC_RES_INVALID_PARAM, rv, "Got %d", rv);
}
-ZTEST(host_cmd_host_commands, get_comms_status)
+ZTEST(host_cmd_host_commands, test_get_comms_status)
{
struct ec_response_get_comms_status response;
int rv;
@@ -52,7 +52,7 @@ ZTEST(host_cmd_host_commands, get_comms_status)
zassert_false(response.flags);
}
-ZTEST(host_cmd_host_commands, resend_response)
+ZTEST(host_cmd_host_commands, test_resend_response)
{
struct host_cmd_handler_args args =
(struct host_cmd_handler_args)BUILD_HOST_COMMAND_SIMPLE(
@@ -70,7 +70,7 @@ ZTEST(host_cmd_host_commands, resend_response)
*/
}
-ZTEST(host_cmd_host_commands, get_proto_version)
+ZTEST(host_cmd_host_commands, test_get_proto_version)
{
struct ec_response_proto_version response;
int rv;