]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/env/fdt.c
test: Remove <common.h> and add needed includes
[thirdparty/u-boot.git] / test / env / fdt.c
CommitLineData
8c72842a
RV
1#include <command.h>
2#include <env_attr.h>
3#include <test/env.h>
4#include <test/ut.h>
5
6static int env_test_fdt_import(struct unit_test_state *uts)
7{
8 const char *val;
9
10 val = env_get("from_fdt");
11 ut_assertnonnull(val);
12 ut_asserteq_str("yes", val);
13
14 val = env_get("fdt_env_path");
15 ut_assertnull(val);
16
17 return 0;
18}
19ENV_TEST(env_test_fdt_import, 0);