diff options
author | Rabin Vincent <rabin@rab.in> | 2014-10-29 23:21:39 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-07 16:27:06 -0500 |
commit | 484408fb5194586b6ba6251f15cbae0c445c3bf5 (patch) | |
tree | 3e32c915a86efd1292711a8c0b3598301884ec53 /test | |
parent | 7dbcb76e77361970f7223c1bca4fdc9bb0436a08 (diff) |
hush: return consistent codes from run_command()
Attempting to run:
- an empty string
- a string with just spaces
returns different error codes, 1 for the empty string and 0
for the string with just spaces. Make both of them return
0 for consistency.
Signed-off-by: Rabin Vincent <rabin@rab.in>
Acked-by: Simon Glass <sjg@chromium.org)
Diffstat (limited to 'test')
-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 e136075541b..a4f034179b0 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; } |