diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/test/dm/sysinfo.c | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/test/dm/sysinfo.c')
-rw-r--r-- | roms/u-boot/test/dm/sysinfo.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/roms/u-boot/test/dm/sysinfo.c b/roms/u-boot/test/dm/sysinfo.c new file mode 100644 index 000000000..96b3a8eba --- /dev/null +++ b/roms/u-boot/test/dm/sysinfo.c @@ -0,0 +1,64 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * (C) Copyright 2018 + * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc + */ + +#include <common.h> +#include <dm.h> +#include <log.h> +#include <dm/test.h> +#include <sysinfo.h> +#include <test/test.h> +#include <test/ut.h> + +#include "../../drivers/sysinfo/sandbox.h" + +static int dm_test_sysinfo(struct unit_test_state *uts) +{ + struct udevice *sysinfo; + bool called_detect = false; + char str[64]; + int i; + + ut_assertok(sysinfo_get(&sysinfo)); + ut_assert(sysinfo); + + ut_asserteq(-EPERM, sysinfo_get_bool(sysinfo, BOOL_CALLED_DETECT, + &called_detect)); + ut_assert(!called_detect); + + sysinfo_detect(sysinfo); + + ut_assertok(sysinfo_get_bool(sysinfo, BOOL_CALLED_DETECT, + &called_detect)); + ut_assert(called_detect); + + ut_assertok(sysinfo_get_str(sysinfo, STR_VACATIONSPOT, sizeof(str), + str)); + ut_assertok(strcmp(str, "R'lyeh")); + + ut_assertok(sysinfo_get_int(sysinfo, INT_TEST1, &i)); + ut_asserteq(0, i); + + ut_assertok(sysinfo_get_int(sysinfo, INT_TEST2, &i)); + ut_asserteq(100, i); + + ut_assertok(sysinfo_get_str(sysinfo, STR_VACATIONSPOT, sizeof(str), + str)); + ut_assertok(strcmp(str, "Carcosa")); + + ut_assertok(sysinfo_get_int(sysinfo, INT_TEST1, &i)); + ut_asserteq(1, i); + + ut_assertok(sysinfo_get_int(sysinfo, INT_TEST2, &i)); + ut_asserteq(99, i); + + ut_assertok(sysinfo_get_str(sysinfo, STR_VACATIONSPOT, sizeof(str), + str)); + ut_assertok(strcmp(str, "Yuggoth")); + + return 0; +} + +DM_TEST(dm_test_sysinfo, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT); |