@@ -175,7 +175,7 @@
"Command": "ticketlock_autotest",
"Func": ticketlock_autotest,
"Report": None,
- }
+ },
{
"Name": "Byte order autotest",
"Command": "byteorder_autotest",
@@ -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)
Minor test case fixes. Signed-off-by: Vivian Kong <vivkong@ca.ibm.com> --- app/test/autotest_data.py | 2 +- app/test/test_cmdline.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-)