f-stack/dpdk/app/test/test_cmdline.h

45 lines
1.2 KiB
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
2017-04-21 10:43:26 +00:00
*/
#ifndef TEST_CMDLINE_H_
#define TEST_CMDLINE_H_
2017-04-21 10:43:26 +00:00
#define CMDLINE_TEST_BUFSIZE 64
2017-04-21 10:43:26 +00:00
/* cmdline_parse_num tests */
int test_parse_num_valid(void);
int test_parse_num_invalid_data(void);
int test_parse_num_invalid_param(void);
2017-04-21 10:43:26 +00:00
/* cmdline_parse_etheraddr tests */
int test_parse_etheraddr_valid(void);
int test_parse_etheraddr_invalid_data(void);
int test_parse_etheraddr_invalid_param(void);
2017-04-21 10:43:26 +00:00
/* cmdline_parse_portlist tests */
int test_parse_portlist_valid(void);
int test_parse_portlist_invalid_data(void);
int test_parse_portlist_invalid_param(void);
2017-04-21 10:43:26 +00:00
/* cmdline_parse_ipaddr tests */
int test_parse_ipaddr_valid(void);
int test_parse_ipaddr_invalid_data(void);
int test_parse_ipaddr_invalid_param(void);
2017-04-21 10:43:26 +00:00
/* cmdline_parse_string tests */
int test_parse_string_valid(void);
int test_parse_string_invalid_data(void);
int test_parse_string_invalid_param(void);
2017-04-21 10:43:26 +00:00
/* cmdline_cirbuf tests */
int test_cirbuf_invalid_param(void);
int test_cirbuf_char(void);
int test_cirbuf_string(void);
int test_cirbuf_align(void);
2017-04-21 10:43:26 +00:00
/* test the rest of the library */
int test_cmdline_lib(void);
2017-04-21 10:43:26 +00:00
#endif /* TEST_CMDLINE_H_ */