cmd_ut.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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 <test/suites.h>
  9. #include <test/test.h>
  10. static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  11. char *const argv[]);
  12. int cmd_ut_category(const char *name, const char *prefix,
  13. struct unit_test *tests, int n_ents,
  14. int argc, char *const argv[])
  15. {
  16. struct unit_test_state uts = { .fail_count = 0 };
  17. struct unit_test *test;
  18. int prefix_len = prefix ? strlen(prefix) : 0;
  19. if (argc == 1)
  20. printf("Running %d %s tests\n", n_ents, name);
  21. for (test = tests; test < tests + n_ents; test++) {
  22. const char *test_name = test->name;
  23. /* Remove the prefix */
  24. if (prefix && !strncmp(test_name, prefix, prefix_len))
  25. test_name += prefix_len;
  26. if (argc > 1 && strcmp(argv[1], test_name))
  27. continue;
  28. printf("Test: %s\n", test->name);
  29. uts.start = mallinfo();
  30. test->func(&uts);
  31. }
  32. printf("Failures: %d\n", uts.fail_count);
  33. return uts.fail_count ? CMD_RET_FAILURE : 0;
  34. }
  35. static struct cmd_tbl cmd_ut_sub[] = {
  36. U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
  37. #if defined(CONFIG_UT_DM)
  38. U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
  39. #endif
  40. #if defined(CONFIG_UT_ENV)
  41. U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
  42. #endif
  43. #ifdef CONFIG_UT_OPTEE
  44. U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
  45. #endif
  46. #ifdef CONFIG_UT_OVERLAY
  47. U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
  48. #endif
  49. #ifdef CONFIG_UT_LIB
  50. U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
  51. #endif
  52. #ifdef CONFIG_UT_LOG
  53. U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
  54. #endif
  55. #ifdef CONFIG_UT_TIME
  56. U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
  57. #endif
  58. #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
  59. U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
  60. #endif
  61. #ifdef CONFIG_SANDBOX
  62. U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
  63. "", ""),
  64. U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
  65. "", ""),
  66. U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
  67. "", ""),
  68. #endif
  69. };
  70. static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  71. char *const argv[])
  72. {
  73. int i;
  74. int retval;
  75. int any_fail = 0;
  76. for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
  77. printf("----Running %s tests----\n", cmd_ut_sub[i].name);
  78. retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
  79. if (!any_fail)
  80. any_fail = retval;
  81. }
  82. return any_fail;
  83. }
  84. static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
  85. {
  86. struct cmd_tbl *cp;
  87. if (argc < 2)
  88. return CMD_RET_USAGE;
  89. /* drop initial "ut" arg */
  90. argc--;
  91. argv++;
  92. cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
  93. if (cp)
  94. return cp->cmd(cmdtp, flag, argc, argv);
  95. return CMD_RET_USAGE;
  96. }
  97. #ifdef CONFIG_SYS_LONGHELP
  98. static char ut_help_text[] =
  99. "all - execute all enabled tests\n"
  100. #ifdef CONFIG_SANDBOX
  101. "ut bloblist - Test bloblist implementation\n"
  102. "ut compression - Test compressors and bootm decompression\n"
  103. #endif
  104. #ifdef CONFIG_UT_DM
  105. "ut dm [test-name]\n"
  106. #endif
  107. #ifdef CONFIG_UT_ENV
  108. "ut env [test-name]\n"
  109. #endif
  110. #ifdef CONFIG_UT_LIB
  111. "ut lib [test-name] - test library functions\n"
  112. #endif
  113. #ifdef CONFIG_UT_LOG
  114. "ut log [test-name] - test logging functions\n"
  115. #endif
  116. #ifdef CONFIG_UT_OPTEE
  117. "ut optee [test-name]\n"
  118. #endif
  119. #ifdef CONFIG_UT_OVERLAY
  120. "ut overlay [test-name]\n"
  121. #endif
  122. #ifdef CONFIG_SANDBOX
  123. "ut str - Basic test of string functions\n"
  124. #endif
  125. #ifdef CONFIG_UT_TIME
  126. "ut time - Very basic test of time functions\n"
  127. #endif
  128. #if defined(CONFIG_UT_UNICODE) && \
  129. !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
  130. "ut unicode [test-name] - test Unicode functions\n"
  131. #endif
  132. ;
  133. #endif /* CONFIG_SYS_LONGHELP */
  134. U_BOOT_CMD(
  135. ut, CONFIG_SYS_MAXARGS, 1, do_ut,
  136. "unit tests", ut_help_text
  137. );