summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/system/src/system_not_board_ap_set_sku_id.c
blob: 8f71531bb86048e965a41cc2584c9ea1feb4205e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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/kernel.h>
#include <zephyr/ztest.h>

#include "system.h"

/* Tests for !CONFIG_HOST_CMD_AP_SET_SKUID */

#define DEFAULT_BOARD_PROVIDED_SKU_ID 0

ZTEST(system, test_system_get_sku_id_default_board_provided_value)
{
	zassert_equal(system_get_sku_id(), DEFAULT_BOARD_PROVIDED_SKU_ID);
}