Rasmus Villemoes | 30d4d2b | 2021-04-21 11:06:55 +0200 | [diff] [blame] | 1 | #include <command.h> |
Tom Rini | 2285638 | 2025-05-14 16:46:03 -0600 | [diff] [blame] | 2 | #include <env.h> |
Rasmus Villemoes | 30d4d2b | 2021-04-21 11:06:55 +0200 | [diff] [blame] | 3 | #include <env_attr.h> |
| 4 | #include <test/env.h> |
| 5 | #include <test/ut.h> |
| 6 | |
| 7 | static int env_test_fdt_import(struct unit_test_state *uts) |
| 8 | { |
| 9 | const char *val; |
| 10 | |
| 11 | val = env_get("from_fdt"); |
| 12 | ut_assertnonnull(val); |
| 13 | ut_asserteq_str("yes", val); |
| 14 | |
| 15 | val = env_get("fdt_env_path"); |
| 16 | ut_assertnull(val); |
| 17 | |
| 18 | return 0; |
| 19 | } |
| 20 | ENV_TEST(env_test_fdt_import, 0); |