3 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5 * SPDX-License-Identifier: GPL-2.0
11 #include <test/suites.h>
14 int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
16 struct unit_test *tests = ll_entry_start(struct unit_test, env_test);
17 const int n_ents = ll_entry_count(struct unit_test, env_test);
18 struct unit_test_state uts = { .fail_count = 0 };
19 struct unit_test *test;
22 printf("Running %d environment tests\n", n_ents);
24 for (test = tests; test < tests + n_ents; test++) {
25 if (argc > 1 && strcmp(argv[1], test->name))
27 printf("Test: %s\n", test->name);
29 uts.start = mallinfo();
34 printf("Failures: %d\n", uts.fail_count);
36 return uts.fail_count ? CMD_RET_FAILURE : 0;