forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Drop the function for running env tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <[email protected]>
- Loading branch information
Showing
3 changed files
with
1 addition
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
* Joe Hershberger, National Instruments, [email protected] | ||
*/ | ||
|
||
#include <command.h> | ||
#include <test/env.h> | ||
#include <test/suites.h> | ||
#include <test/ut.h> | ||
|
@@ -74,11 +73,3 @@ static int env_test_env_cmd(struct unit_test_state *uts) | |
return 0; | ||
} | ||
ENV_TEST(env_test_env_cmd, UTF_CONSOLE); | ||
|
||
int do_ut_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) | ||
{ | ||
struct unit_test *tests = UNIT_TEST_SUITE_START(env); | ||
const int n_ents = UNIT_TEST_SUITE_COUNT(env); | ||
|
||
return cmd_ut_category("env", "env_test_", tests, n_ents, argc, argv); | ||
} |