From: Aaron Conole Date: Tue, 22 Mar 2016 21:37:12 +0000 (-0400) Subject: app/test: fix missing brackets X-Git-Tag: spdx-start~7136 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=29815f5a2331d361593ec62f3a54d154423a192d;p=dpdk.git app/test: fix missing brackets The test application calls printf(...) with the suite->suite_name argument. The intent (based on whitespace) in the printf is to check suite->suite_name first and then apply the printf. This doesn't happen due to missing brackets. Signed-off-by: Aaron Conole Acked-by: Panu Matilainen --- diff --git a/app/test/test.c b/app/test/test.c index f35b3041b9..ccad0e3008 100644 --- a/app/test/test.c +++ b/app/test/test.c @@ -162,9 +162,10 @@ unit_test_suite_runner(struct unit_test_suite *suite) int test_success; unsigned total = 0, executed = 0, skipped = 0, succeeded = 0, failed = 0; - if (suite->suite_name) + if (suite->suite_name) { printf(" + ------------------------------------------------------- +\n"); printf(" + Test Suite : %s\n", suite->suite_name); + } if (suite->setup) if (suite->setup() != 0)