cmd_ut.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * (C) Copyright 2015
  4. * Joe Hershberger, National Instruments, joe.hershberger@ni.com
  5. */
  6. #include <common.h>
  7. #include <command.h>
  8. #include <console.h>
  9. #include <test/suites.h>
  10. #include <test/test.h>
  11. static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  12. char *const argv[]);
  13. int cmd_ut_category(const char *name, const char *prefix,
  14. struct unit_test *tests, int n_ents,
  15. int argc, char *const argv[])
  16. {
  17. struct unit_test_state uts = { .fail_count = 0 };
  18. struct unit_test *test;
  19. int prefix_len = prefix ? strlen(prefix) : 0;
  20. if (argc == 1)
  21. printf("Running %d %s tests\n", n_ents, name);
  22. for (test = tests; test < tests + n_ents; test++) {
  23. const char *test_name = test->name;
  24. /* Remove the prefix */
  25. if (prefix && !strncmp(test_name, prefix, prefix_len))
  26. test_name += prefix_len;
  27. if (argc > 1 && strcmp(argv[1], test_name))
  28. continue;
  29. printf("Test: %s\n", test->name);
  30. if (test->flags & UT_TESTF_CONSOLE_REC) {
  31. int ret = console_record_reset_enable();
  32. if (ret) {
  33. printf("Skipping: Console recording disabled\n");
  34. continue;
  35. }
  36. }
  37. uts.start = mallinfo();
  38. test->func(&uts);
  39. }
  40. printf("Failures: %d\n", uts.fail_count);
  41. return uts.fail_count ? CMD_RET_FAILURE : 0;
  42. }
  43. static struct cmd_tbl cmd_ut_sub[] = {
  44. U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
  45. #if defined(CONFIG_UT_DM)
  46. U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
  47. #endif
  48. #if defined(CONFIG_UT_ENV)
  49. U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
  50. #endif
  51. #ifdef CONFIG_UT_OPTEE
  52. U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
  53. #endif
  54. #ifdef CONFIG_UT_OVERLAY
  55. U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
  56. #endif
  57. #ifdef CONFIG_UT_LIB
  58. U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
  59. #endif
  60. #ifdef CONFIG_UT_LOG
  61. U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
  62. #endif
  63. U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
  64. #ifdef CONFIG_CMD_SETEXPR
  65. U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
  66. ""),
  67. #endif
  68. #ifdef CONFIG_UT_TIME
  69. U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
  70. #endif
  71. #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
  72. U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
  73. #endif
  74. #ifdef CONFIG_SANDBOX
  75. U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
  76. "", ""),
  77. U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
  78. "", ""),
  79. U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
  80. #endif
  81. U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
  82. #ifdef CONFIG_CMD_ADDRMAP
  83. U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
  84. #endif
  85. };
  86. static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  87. char *const argv[])
  88. {
  89. int i;
  90. int retval;
  91. int any_fail = 0;
  92. for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
  93. printf("----Running %s tests----\n", cmd_ut_sub[i].name);
  94. retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
  95. if (!any_fail)
  96. any_fail = retval;
  97. }
  98. return any_fail;
  99. }
  100. static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
  101. {
  102. struct cmd_tbl *cp;
  103. if (argc < 2)
  104. return CMD_RET_USAGE;
  105. /* drop initial "ut" arg */
  106. argc--;
  107. argv++;
  108. cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
  109. if (cp)
  110. return cp->cmd(cmdtp, flag, argc, argv);
  111. return CMD_RET_USAGE;
  112. }
  113. #ifdef CONFIG_SYS_LONGHELP
  114. static char ut_help_text[] =
  115. "all - execute all enabled tests\n"
  116. #ifdef CONFIG_SANDBOX
  117. "ut bloblist - Test bloblist implementation\n"
  118. "ut compression - Test compressors and bootm decompression\n"
  119. #endif
  120. #ifdef CONFIG_UT_DM
  121. "ut dm [test-name]\n"
  122. #endif
  123. #ifdef CONFIG_UT_ENV
  124. "ut env [test-name]\n"
  125. #endif
  126. #ifdef CONFIG_UT_LIB
  127. "ut lib [test-name] - test library functions\n"
  128. #endif
  129. #ifdef CONFIG_UT_LOG
  130. "ut log [test-name] - test logging functions\n"
  131. #endif
  132. "ut mem [test-name] - test memory-related commands\n"
  133. #ifdef CONFIG_UT_OPTEE
  134. "ut optee [test-name]\n"
  135. #endif
  136. #ifdef CONFIG_UT_OVERLAY
  137. "ut overlay [test-name]\n"
  138. #endif
  139. "ut setexpr [test-name] - test setexpr command\n"
  140. #ifdef CONFIG_SANDBOX
  141. "ut str - Basic test of string functions\n"
  142. #endif
  143. #ifdef CONFIG_UT_TIME
  144. "ut time - Very basic test of time functions\n"
  145. #endif
  146. #if defined(CONFIG_UT_UNICODE) && \
  147. !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
  148. "ut unicode [test-name] - test Unicode functions\n"
  149. #endif
  150. #ifdef CONFIG_CMD_ADDRMAP
  151. "ut addrmap - Very basic test of addrmap command\n"
  152. #endif
  153. ;
  154. #endif /* CONFIG_SYS_LONGHELP */
  155. U_BOOT_CMD(
  156. ut, CONFIG_SYS_MAXARGS, 1, do_ut,
  157. "unit tests", ut_help_text
  158. );