summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/console_cmd/ec_features.c
blob: b33ca565bc7af42473ca36ac7df00bec62c2b18b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Copyright 2022 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <zephyr/shell/shell.h>
#include <zephyr/ztest.h>

#include "console.h"
#include "host_command.h"
#include "test/drivers/test_state.h"
#include "test/drivers/utils.h"

ZTEST_SUITE(console_cmd_ec_features, drivers_predicate_post_main, NULL, NULL,
	    NULL, NULL);

ZTEST_USER(console_cmd_ec_features, test_feat)
{
	char expected[32];

	snprintf(expected, sizeof(expected), " 0-31: 0x%08x\r\n32-63: 0x%08x",
		 get_feature_flags0(), get_feature_flags1());

	CHECK_CONSOLE_CMD("feat", expected, EC_SUCCESS);
}