]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - test/cmd_ut.c
test: env: Add test framework for env
[karo-tx-uboot.git] / test / cmd_ut.c
index a65bfeaf3122da5068d5d37e051995068f94d5a1..f6e1f413db7f6f472d9609d728b0c40e8d347f41 100644 (file)
@@ -16,6 +16,9 @@ static cmd_tbl_t cmd_ut_sub[] = {
 #if defined(CONFIG_UT_DM)
        U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
 #endif
+#if defined(CONFIG_UT_ENV)
+       U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
+#endif
 #ifdef CONFIG_UT_TIME
        U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
 #endif
@@ -62,6 +65,9 @@ static char ut_help_text[] =
 #ifdef CONFIG_UT_DM
        "ut dm [test-name]\n"
 #endif
+#ifdef CONFIG_UT_ENV
+       "ut env [test-name]\n"
+#endif
 #ifdef CONFIG_UT_TIME
        "ut time - Very basic test of time functions\n"
 #endif