summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/system/src/system_not_board_ap_set_sku_id.c
blob: 2d4e60fdcb24b00904f102bb3ff36ad025929f08 (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 "system.h"

#include <zephyr/kernel.h>
#include <zephyr/ztest.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);
}