diff options
Diffstat (limited to 'test/command_ut.c')
-rw-r--r-- | test/command_ut.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/command_ut.c b/test/command_ut.c index e136075541..a4f034179b 100644 --- a/test/command_ut.c +++ b/test/command_ut.c @@ -188,6 +188,9 @@ static int do_ut_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) #endif #endif + assert(run_command("", 0) == 0); + assert(run_command(" ", 0) == 0); + printf("%s: Everything went swimmingly\n", __func__); return 0; } |