From 6b3f25caff262b536a5449ac5461dd041c92a655 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Mon, 9 Dec 2019 10:45:47 -0500 Subject: vlib: improve test coverage Add tests. Remove unused rule-based parser code. Type: test Signed-off-by: Dave Barach Change-Id: I3ca3a9dd9da8ee8f3a47004c98f2f5644db10057 --- src/plugins/unittest/vlib_test.c | 41 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) (limited to 'src/plugins/unittest') diff --git a/src/plugins/unittest/vlib_test.c b/src/plugins/unittest/vlib_test.c index 49c2ef20052..3154b7d21cf 100644 --- a/src/plugins/unittest/vlib_test.c +++ b/src/plugins/unittest/vlib_test.c @@ -133,7 +133,7 @@ test_vlib_command_fn (vlib_main_t * vm, VLIB_CLI_COMMAND (test_vlib_command, static) = { .path = "test vlib", - .short_help = "vlib code coverate unit test", + .short_help = "vlib code coverage unit test", .function = test_vlib_command_fn, }; /* *INDENT-ON* */ @@ -189,6 +189,45 @@ VLIB_CLI_COMMAND (test_format_vlib_command, static) = }; /* *INDENT-ON* */ +static clib_error_t * +test_vlib2_command_fn (vlib_main_t * vm, + unformat_input_t * input, vlib_cli_command_t * cmd) +{ + u8 *s; + u8 **result; + + s = format (0, "show "); + result = vlib_cli_get_possible_completions (s); + vec_free (result); + vec_free (s); + + s = 0; + vec_add1 (s, 0); + result = vlib_cli_get_possible_completions (s); + vec_free (result); + vec_free (s); + + s = format (0, "show ?"); + result = vlib_cli_get_possible_completions (s); + vec_free (result); + vec_free (s); + + return 0; +} + +/* *INDENT-OFF* */ +VLIB_CLI_COMMAND (test_vlib2_command, static) = +{ + .path = "test vlib2", + .short_help = "vlib code coverage unit test #2", + .function = test_vlib2_command_fn, +}; +/* *INDENT-ON* */ + + + + + /* * fd.io coding-style-patch-verification: ON * -- cgit 1.2.3-korg