]> Git Repo - J-u-boot.git/blame - test/dm/bootcount.c
Merge branch '2019-07-29-ti-imports'
[J-u-boot.git] / test / dm / bootcount.c
CommitLineData
6f2d59cb
PT
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) 2018 Theobroma Systems Design und Consulting GmbH
4 */
5
6#include <common.h>
7#include <dm.h>
8#include <bootcount.h>
9#include <asm/test.h>
10#include <dm/test.h>
11#include <test/ut.h>
12
13static int dm_test_bootcount(struct unit_test_state *uts)
14{
15 struct udevice *dev;
16 u32 val;
17
18 ut_assertok(uclass_get_device(UCLASS_BOOTCOUNT, 0, &dev));
19 ut_assertok(dm_bootcount_set(dev, 0));
20 ut_assertok(dm_bootcount_get(dev, &val));
21 ut_assert(val == 0);
22 ut_assertok(dm_bootcount_set(dev, 0xab));
23 ut_assertok(dm_bootcount_get(dev, &val));
24 ut_assert(val == 0xab);
25
26 return 0;
27}
28
29DM_TEST(dm_test_bootcount, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
30
This page took 0.043693 seconds and 4 git commands to generate.