[dpdk-dev] [RFC 12/12] test: miscellaneous test fixes
Vivian Kong
vivkong at gmail.com
Tue Apr 9 21:06:30 CEST 2019
Minor test case fixes.
Signed-off-by: Vivian Kong <vivkong at ca.ibm.com>
---
app/test/autotest_data.py | 2 +-
app/test/test_cmdline.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py
index db2527489..72c56e528 100644
--- a/app/test/autotest_data.py
+++ b/app/test/autotest_data.py
@@ -175,7 +175,7 @@
"Command": "ticketlock_autotest",
"Func": ticketlock_autotest,
"Report": None,
- }
+ },
{
"Name": "Byte order autotest",
"Command": "byteorder_autotest",
diff --git a/app/test/test_cmdline.c b/app/test/test_cmdline.c
index 115bee966..e0720ff34 100644
--- a/app/test/test_cmdline.c
+++ b/app/test/test_cmdline.c
@@ -10,21 +10,21 @@
static int
test_cmdline(void)
{
- printf("Testind parsing ethernet addresses...\n");
+ printf("Testing parsing ethernet addresses...\n");
if (test_parse_etheraddr_valid() < 0)
return -1;
if (test_parse_etheraddr_invalid_data() < 0)
return -1;
if (test_parse_etheraddr_invalid_param() < 0)
return -1;
- printf("Testind parsing port lists...\n");
+ printf("Testing parsing port lists...\n");
if (test_parse_portlist_valid() < 0)
return -1;
if (test_parse_portlist_invalid_data() < 0)
return -1;
if (test_parse_portlist_invalid_param() < 0)
return -1;
- printf("Testind parsing numbers...\n");
+ printf("Testing parsing numbers...\n");
if (test_parse_num_valid() < 0)
return -1;
if (test_parse_num_invalid_data() < 0)
--
2.17.1
More information about the dev
mailing list