77f1f98e47
- Add upstream patches to fix building with gcc >= 6 * 0100-kni-fix-build-with-gcc-6.patch * 0101-ixgbe-fix-uninitialized-warning.patch * 0102-ixgbe-fix-constant-sign-in-left-shift-operator.patch * 0103-e1000-base-Add-missing-braces-to-the-if-statements.patch * 0104-igb-fix-constant-sign-in-left-shift-operator.patch * 0105-e1000-fix-missing-link-interrupt-check-brackets.patch * 0106-app-test-fix-missing-brackets.patch * 0107-examples-ip_pipeline-use-unsigned-constants-for-left.patch OBS-URL: https://build.opensuse.org/request/show/404208 OBS-URL: https://build.opensuse.org/package/show/network/dpdk?expand=0&rev=9
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 29815f5a2331d361593ec62f3a54d154423a192d Mon Sep 17 00:00:00 2001
|
|
From: Aaron Conole <aconole@redhat.com>
|
|
Date: Tue, 22 Mar 2016 17:37:12 -0400
|
|
Subject: [PATCH] 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 <aconole@redhat.com>
|
|
Acked-by: Panu Matilainen <pmatilai@redhat.com>
|
|
---
|
|
app/test/test.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/app/test/test.c b/app/test/test.c
|
|
index f35b304..ccad0e3 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)
|
|
--
|
|
2.8.4
|
|
|