diff options
Diffstat (limited to 'src/plugins/unittest')
28 files changed, 0 insertions, 137 deletions
diff --git a/src/plugins/unittest/api_fuzz_test.c b/src/plugins/unittest/api_fuzz_test.c index 9cf767a5ccd..121c52a310b 100644 --- a/src/plugins/unittest/api_fuzz_test.c +++ b/src/plugins/unittest/api_fuzz_test.c @@ -126,14 +126,12 @@ test_api_fuzz_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_api_fuzz, static) = { .path = "test api fuzz", .short_help = "test api fuzz [disable][seed nnn]\n" " [fuzz-first nn][fuzz-cli-first nn][fuzz-cli-last nn]", .function = test_api_fuzz_command_fn, }; -/* *INDENT-ON* */ static u8 main_loop_enter_enable_api_fuzz; diff --git a/src/plugins/unittest/bihash_test.c b/src/plugins/unittest/bihash_test.c index f0c6da2acc3..1d3aeeca23d 100644 --- a/src/plugins/unittest/bihash_test.c +++ b/src/plugins/unittest/bihash_test.c @@ -541,14 +541,12 @@ test_bihash_command_fn (vlib_main_t * vm, return error; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_bihash_command, static) = { .path = "test bihash", .short_help = "test bihash", .function = test_bihash_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * bihash_test_init (vlib_main_t * vm) diff --git a/src/plugins/unittest/bitmap_test.c b/src/plugins/unittest/bitmap_test.c index eb232bd11e5..1b05be7b333 100644 --- a/src/plugins/unittest/bitmap_test.c +++ b/src/plugins/unittest/bitmap_test.c @@ -220,13 +220,11 @@ done: return error; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_bitmap_command, static) = { .path = "test bitmap", .short_help = "Coverage test for bitmap.h", .function = test_bitmap_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/aes_cbc.c b/src/plugins/unittest/crypto/aes_cbc.c index 05a16c29a5c..89b0163207f 100644 --- a/src/plugins/unittest/crypto/aes_cbc.c +++ b/src/plugins/unittest/crypto/aes_cbc.c @@ -53,7 +53,6 @@ static u8 ciphertext128[] = { 0x12, 0x0E, 0xCA, 0x30, 0x75, 0x86, 0xE1, 0xA7, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes128_cbc) = { .name = "NIST SP 800-38A", .alg = VNET_CRYPTO_ALG_AES_128_CBC, @@ -63,7 +62,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes128_cbc) = { .ciphertext = TEST_DATA (ciphertext128), }; -/* *INDENT-ON* */ static u8 key192[24] = { 0x8E, 0x73, 0xB0, 0xF7, 0xDA, 0x0E, 0x64, 0x52, @@ -82,7 +80,6 @@ static u8 ciphertext192[64] = { 0xD9, 0x20, 0xA9, 0xE6, 0x4F, 0x56, 0x15, 0xCD, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes192_cbc) = { .name = "NIST SP 800-38A", .alg = VNET_CRYPTO_ALG_AES_192_CBC, @@ -92,7 +89,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes192_cbc) = { .ciphertext = TEST_DATA (ciphertext192), }; -/* *INDENT-ON* */ static u8 key256[32] = { 0x60, 0x3D, 0xEB, 0x10, 0x15, 0xCA, 0x71, 0xBE, @@ -112,7 +108,6 @@ static u8 ciphertext256[64] = { 0xDA, 0x6C, 0x19, 0x07, 0x8C, 0x6A, 0x9D, 0x1B, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes256_cbc) = { .name = "NIST SP 800-38A", .alg = VNET_CRYPTO_ALG_AES_256_CBC, @@ -151,7 +146,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes256_incr2) = { .key.length = 32, .plaintext_incremental = 1056, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/aes_ctr.c b/src/plugins/unittest/crypto/aes_ctr.c index 80e66111c12..581e283b0c3 100644 --- a/src/plugins/unittest/crypto/aes_ctr.c +++ b/src/plugins/unittest/crypto/aes_ctr.c @@ -41,7 +41,6 @@ static u8 tc1_ciphertext[] = { 0x1b, 0xef, 0x68, 0x64, 0x99, 0x0d, 0xb6, 0xce, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes128_ctr_tc1) = { .name = "CTR-AES128 TC1", .alg = VNET_CRYPTO_ALG_AES_128_CTR, @@ -50,7 +49,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes128_ctr_tc1) = { .plaintext = TEST_DATA (tc1_plaintext), .ciphertext = TEST_DATA (tc1_ciphertext), }; -/* *INDENT-ON* */ static u8 tc1_192_key[] = { 0x8e, 0x73, 0xb0, 0xf7, 0xda, 0x0e, 0x64, 0x52, @@ -68,7 +66,6 @@ static u8 tc1_192_ciphertext[] = { 0x4f, 0x2b, 0x04, 0x59, 0xfe, 0x7e, 0x6e, 0x0b, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes192_ctr_tc1) = { .name = "CTR-AES192 TC1", .alg = VNET_CRYPTO_ALG_AES_192_CTR, @@ -77,7 +74,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes192_ctr_tc1) = { .plaintext = TEST_DATA (tc1_plaintext), .ciphertext = TEST_DATA (tc1_192_ciphertext), }; -/* *INDENT-ON* */ static u8 tc1_256_key[] = { 0x60, 0x3d, 0xeb, 0x10, 0x15, 0xca, 0x71, 0xbe, @@ -96,7 +92,6 @@ static u8 tc1_256_ciphertext[] = { 0xb7, 0xa7, 0xf5, 0x04, 0xbb, 0xf3, 0xd2, 0x28, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes256_ctr_tc1) = { .name = "CTR-AES256 TC1", .alg = VNET_CRYPTO_ALG_AES_256_CTR, @@ -105,7 +100,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (nist_aes256_ctr_tc1) = { .plaintext = TEST_DATA (tc1_plaintext), .ciphertext = TEST_DATA (tc1_256_ciphertext), }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/aes_gcm.c b/src/plugins/unittest/crypto/aes_gcm.c index 3d1b221bf32..daa9ef11dcc 100644 --- a/src/plugins/unittest/crypto/aes_gcm.c +++ b/src/plugins/unittest/crypto/aes_gcm.c @@ -166,7 +166,6 @@ static u8 tc4_tag256[] = { 0xcd, 0xdf, 0x88, 0x53, 0xbb, 0x2d, 0x55, 0x1b }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (aes_gcm128_tc1) = { .name = "128-GCM Spec. TC1", .alg = VNET_CRYPTO_ALG_AES_128_GCM, @@ -318,7 +317,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (aes_gcm256_inc5) = { .aad.length = 20, .tag.length = 16, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/chacha20_poly1305.c b/src/plugins/unittest/crypto/chacha20_poly1305.c index 650898524fd..740d6304b8f 100644 --- a/src/plugins/unittest/crypto/chacha20_poly1305.c +++ b/src/plugins/unittest/crypto/chacha20_poly1305.c @@ -61,7 +61,6 @@ static u8 tc1_ciphertext[] = { 0x61, 0x16 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc1) = { .name = "CHACHA20-POLY1305 TC1", .alg = VNET_CRYPTO_ALG_CHACHA20_POLY1305, @@ -72,7 +71,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc1) = { .plaintext = TEST_DATA (tc1_plaintext), .ciphertext = TEST_DATA (tc1_ciphertext), }; -/* *INDENT-ON* */ static u8 tc2_key[] = { 0x2d, 0xb0, 0x5d, 0x40, 0xc8, 0xed, 0x44, 0x88, @@ -100,7 +98,6 @@ static u8 tc2_plaintext[] = { }; static u8 tc2_ciphertext[] = { }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc2) = { .name = "CHACHA20-POLY1305 TC2", .alg = VNET_CRYPTO_ALG_CHACHA20_POLY1305, @@ -111,7 +108,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc2) = { .plaintext = TEST_DATA (tc2_plaintext), .ciphertext = TEST_DATA (tc2_ciphertext), }; -/* *INDENT-ON* */ static u8 tc3_key[] = { 0x4c, 0xf5, 0x96, 0x83, 0x38, 0xe6, 0xae, 0x7f, @@ -137,7 +133,6 @@ static u8 tc3_plaintext[] = { }; static u8 tc3_ciphertext[] = { }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc3) = { .name = "CHACHA20-POLY1305 TC3", .alg = VNET_CRYPTO_ALG_CHACHA20_POLY1305, @@ -148,5 +143,4 @@ UNITTEST_REGISTER_CRYPTO_TEST (chacha20_poly1305_tc3) = { .plaintext = TEST_DATA (tc3_plaintext), .ciphertext = TEST_DATA (tc3_ciphertext), }; -/* *INDENT-ON* */ diff --git a/src/plugins/unittest/crypto/rfc2202_hmac_md5.c b/src/plugins/unittest/crypto/rfc2202_hmac_md5.c index 7a39aed3030..c9604b84c1d 100644 --- a/src/plugins/unittest/crypto/rfc2202_hmac_md5.c +++ b/src/plugins/unittest/crypto/rfc2202_hmac_md5.c @@ -31,7 +31,6 @@ static u8 md5_tc1_digest[] = { 0x13, 0xf4, 0x8e, 0xf8, 0x15, 0x8b, 0xfc, 0x9d }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc1) = { .name = "RFC2202 HMAC-MD5 TC1", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -39,7 +38,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc1) = { .plaintext = TEST_DATA (md5_tc1_data), .digest = TEST_DATA (md5_tc1_digest), }; -/* *INDENT-ON* */ static char md5_tc2_key[4] = "Jefe"; @@ -50,7 +48,6 @@ static u8 md5_tc2_digest[] = { 0xea, 0xa8, 0x6e, 0x31, 0x0a, 0x5d, 0xb7, 0x38, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc2) = { .name = "RFC2202 HMAC-MD5 TC2", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -58,7 +55,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc2) = { .plaintext = TEST_DATA (md5_tc2_data), .digest = TEST_DATA (md5_tc2_digest), }; -/* *INDENT-ON* */ static char md5_tc3_key[16] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -80,7 +76,6 @@ static u8 md5_tc3_digest[] = { 0xdb, 0xb8, 0xc7, 0x33, 0xf0, 0xe8, 0xb3, 0xf6, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc3) = { .name = "RFC2202 HMAC-MD5 TC3", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -88,7 +83,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc3) = { .plaintext = TEST_DATA (md5_tc3_data), .digest = TEST_DATA (md5_tc3_digest), }; -/* *INDENT-ON* */ static u8 md5_tc4_key[25] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, @@ -112,7 +106,6 @@ static u8 md5_tc4_digest[] = { 0x3a, 0x75, 0x16, 0x47, 0x46, 0xff, 0xaa, 0x79, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc4) = { .name = "RFC2202 HMAC-MD5 TC4", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -120,7 +113,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc4) = { .plaintext = TEST_DATA (md5_tc4_data), .digest = TEST_DATA (md5_tc4_digest), }; -/* *INDENT-ON* */ static u8 md5_tc5_key[16] = { 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, @@ -134,7 +126,6 @@ static u8 md5_tc5_digest[] = { 0xf9, 0xba, 0xb9, 0x95, 0x69, 0x0e, 0xfd, 0x4c, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc5) = { .name = "RFC2202 HMAC-MD5 TC5", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -142,7 +133,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc5) = { .plaintext = TEST_DATA (md5_tc5_data), .digest = TEST_DATA (md5_tc5_digest), }; -/* *INDENT-ON* */ static u8 md5_tc6_key[80] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -165,7 +155,6 @@ static u8 md5_tc6_digest[] = { 0x0b, 0x62, 0xe6, 0xce, 0x61, 0xb9, 0xd0, 0xcd, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc6) = { .name = "RFC2202 HMAC-MD5 TC6", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -173,7 +162,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc6) = { .plaintext = TEST_DATA (md5_tc6_data), .digest = TEST_DATA (md5_tc6_digest), }; -/* *INDENT-ON* */ static char md5_tc7_data[73] = "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"; @@ -183,7 +171,6 @@ static u8 md5_tc7_digest[] = { 0x1f, 0xb1, 0xf5, 0x62, 0xdb, 0x3a, 0xa5, 0x3e, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc7) = { .name = "RFC2202 HMAC-MD5 TC7", .alg = VNET_CRYPTO_ALG_HMAC_MD5, @@ -203,7 +190,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_md5_tc7_chained) = { TEST_DATA_CHUNK (md5_tc7_data, 40, 33) }, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/rfc2202_hmac_sha1.c b/src/plugins/unittest/crypto/rfc2202_hmac_sha1.c index 2513c5ebad2..aa440625cc6 100644 --- a/src/plugins/unittest/crypto/rfc2202_hmac_sha1.c +++ b/src/plugins/unittest/crypto/rfc2202_hmac_sha1.c @@ -33,7 +33,6 @@ static u8 sha1_tc1_digest[] = { 0xf1, 0x46, 0xbe, 0x00 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc1) = { .name = "RFC2202 HMAC-SHA-1 TC1", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -41,7 +40,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc1) = { .plaintext = TEST_DATA (sha1_tc1_data), .digest = TEST_DATA (sha1_tc1_digest), }; -/* *INDENT-ON* */ static char sha1_tc2_key[4] = "Jefe"; @@ -53,7 +51,6 @@ static u8 sha1_tc2_digest[] = { 0x25, 0x9a, 0x7c, 0x79 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc2) = { .name = "RFC2202 HMAC-SHA-1 TC2", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -61,7 +58,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc2) = { .plaintext = TEST_DATA (sha1_tc2_data), .digest = TEST_DATA (sha1_tc2_digest), }; -/* *INDENT-ON* */ static u8 sha1_tc3_key[20] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -85,7 +81,6 @@ static u8 sha1_tc3_digest[] = { 0x63, 0xf1, 0x75, 0xd3, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc3) = { .name = "RFC2202 HMAC-SHA-1 TC3", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -93,7 +88,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc3) = { .plaintext = TEST_DATA (sha1_tc3_data), .digest = TEST_DATA (sha1_tc3_digest), }; -/* *INDENT-ON* */ static u8 sha1_tc4_key[25] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, @@ -118,7 +112,6 @@ static u8 sha1_tc4_digest[] = { 0x2d, 0x72, 0x35, 0xda, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc4) = { .name = "RFC2202 HMAC-SHA-1 TC4", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -126,7 +119,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc4) = { .plaintext = TEST_DATA (sha1_tc4_data), .digest = TEST_DATA (sha1_tc4_digest), }; -/* *INDENT-ON* */ static u8 sha1_tc5_key[20] = { 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, @@ -142,7 +134,6 @@ static u8 sha1_tc5_digest[] = { 0x4a, 0x9a, 0x5a, 0x04 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc5) = { .name = "RFC2202 HMAC-SHA-1 TC5", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -150,14 +141,12 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc5) = { .plaintext = TEST_DATA (sha1_tc5_data), .digest = TEST_DATA (sha1_tc5_digest), }; -/* *INDENT-ON* */ static u8 sha1_tc5_digest_96[12] = { 0x4c, 0x1a, 0x03, 0x42, 0x4b, 0x55, 0xe0, 0x7f, 0xe7, 0xf2, 0x7b, 0xe1 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc5_trunc) = { .name = "RFC2202 HMAC-SHA-1-96 TC5-trunc", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -165,7 +154,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc5_trunc) = { .plaintext = TEST_DATA (sha1_tc5_data), .digest = TEST_DATA (sha1_tc5_digest_96), }; -/* *INDENT-ON* */ static u8 sha1_tc6_key[80] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -189,7 +177,6 @@ static u8 sha1_tc6_digest[] = { 0xed, 0x40, 0x21, 0x12 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc6) = { .name = "RFC2202 HMAC-SHA-1 TC6", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -197,7 +184,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc6) = { .plaintext = TEST_DATA (sha1_tc6_data), .digest = TEST_DATA (sha1_tc6_digest), }; -/* *INDENT-ON* */ static char sha1_tc7_data[73] = "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"; @@ -208,7 +194,6 @@ static u8 sha1_tc7_digest[20] = { 0xbb, 0xff, 0x1a, 0x91 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc7) = { .name = "RFC2202 HMAC-SHA-1 TC7", .alg = VNET_CRYPTO_ALG_HMAC_SHA1, @@ -237,7 +222,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc_2202_sha1_tc7_inc) = { .key.length = 80, .digest.length = 12, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto/rfc4231.c b/src/plugins/unittest/crypto/rfc4231.c index 127e1bfe521..edd502e0609 100644 --- a/src/plugins/unittest/crypto/rfc4231.c +++ b/src/plugins/unittest/crypto/rfc4231.c @@ -61,7 +61,6 @@ static u8 tc1_digest_sha512[] = { 0x2e, 0x69, 0x6c, 0x20, 0x3a, 0x12, 0x68, 0x54 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc1_sha224) = { .name = "RFC4231 TC1", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -93,7 +92,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc1_sha512) = { .plaintext = TEST_DATA (tc1_data), .digest = TEST_DATA (tc1_digest_sha512), }; -/* *INDENT-ON* */ static char tc2_key[4] = "Jefe"; @@ -133,7 +131,6 @@ static u8 tc2_digest_sha512[] = { 0x63, 0x6e, 0x07, 0x0a, 0x38, 0xbc, 0xe7, 0x37, }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc2_sha224) = { .name = "RFC4231 TC2", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -165,7 +162,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc2_sha512) = { .plaintext = TEST_DATA (tc2_data), .digest = TEST_DATA (tc2_digest_sha512), }; -/* *INDENT-ON* */ static u8 tc3_key[20] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -217,7 +213,6 @@ static u8 tc3_digest_sha512[] = { 0x74, 0x27, 0x88, 0x59, 0xe1, 0x32, 0x92, 0xfb }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc3_sha224) = { .name = "RFC4231 TC3", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -249,7 +244,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc3_sha512) = { .plaintext = TEST_DATA (tc3_data), .digest = TEST_DATA (tc3_digest_sha512), }; -/* *INDENT-ON* */ static u8 tc4_key[25] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, @@ -302,7 +296,6 @@ static u8 tc4_digest_sha512[] = { 0xe2, 0xad, 0xeb, 0xeb, 0x10, 0xa2, 0x98, 0xdd }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc4_sha224) = { .name = "RFC4231 TC4", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -334,7 +327,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc4_sha512) = { .plaintext = TEST_DATA (tc4_data), .digest = TEST_DATA (tc4_digest_sha512), }; -/* *INDENT-ON* */ static u8 tc5_key[20] = { 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, @@ -368,7 +360,6 @@ static u8 tc5_digest_sha512[16] = { 0x1d, 0x41, 0x79, 0xbc, 0x89, 0x1d, 0x87, 0xa6 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc5_sha224) = { .name = "RFC4231 TC5", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -400,7 +391,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc5_sha512) = { .plaintext = TEST_DATA (tc5_data), .digest = TEST_DATA (tc5_digest_sha512), }; -/* *INDENT-ON* */ static u8 tc6_key[131] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -459,7 +449,6 @@ static u8 tc6_digest_sha512[] = { 0x8b, 0x91, 0x5a, 0x98, 0x5d, 0x78, 0x65, 0x98 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc6_sha224) = { .name = "RFC4231 TC6", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -491,7 +480,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc6_sha512) = { .plaintext = TEST_DATA (tc6_data), .digest = TEST_DATA (tc6_digest_sha512), }; -/* *INDENT-ON* */ static u8 tc7_key[131] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -552,7 +540,6 @@ static u8 tc7_digest_sha512[] = { 0x65, 0xc9, 0x74, 0x40, 0xfa, 0x8c, 0x6a, 0x58 }; -/* *INDENT-OFF* */ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc7_sha224) = { .name = "RFC4231 TC7", .alg = VNET_CRYPTO_ALG_HMAC_SHA224, @@ -598,7 +585,6 @@ UNITTEST_REGISTER_CRYPTO_TEST (rfc4231_tc7_sha512_chain) = { TEST_DATA_CHUNK (tc7_data, 150, 2), }, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/crypto_test.c b/src/plugins/unittest/crypto_test.c index 473ed126450..4bc06f71c79 100644 --- a/src/plugins/unittest/crypto_test.c +++ b/src/plugins/unittest/crypto_test.c @@ -454,7 +454,6 @@ test_crypto_static (vlib_main_t * vm, crypto_test_main_t * tm, current_op = ops; current_chained_op = chained_ops; - /* *INDENT-OFF* */ vec_foreach_index (i, rv) { r = rv[i]; @@ -644,7 +643,6 @@ test_crypto_static (vlib_main_t * vm, crypto_test_main_t * tm, op->user_data = i; } } - /* *INDENT-ON* */ vnet_crypto_process_ops (vm, ops, vec_len (ops)); vnet_crypto_process_chained_ops (vm, chained_ops, chunks, @@ -670,10 +668,8 @@ test_crypto_get_key_sz (vnet_crypto_alg_t alg) #define _(n, s, l) \ case VNET_CRYPTO_ALG_##n: \ return l; - /* *INDENT-OFF* */ foreach_crypto_cipher_alg foreach_crypto_aead_alg - /* *INDENT-ON* */ #undef _ case VNET_CRYPTO_ALG_HMAC_MD5: case VNET_CRYPTO_ALG_HMAC_SHA1: @@ -1060,14 +1056,12 @@ test_crypto_command_fn (vlib_main_t * vm, return test_crypto (vm, tm); } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_crypto_command, static) = { .path = "test crypto", .short_help = "test crypto", .function = test_crypto_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * crypto_test_init (vlib_main_t * vm) diff --git a/src/plugins/unittest/interface_test.c b/src/plugins/unittest/interface_test.c index 4cf5ae43b3c..b5d5b6f776e 100644 --- a/src/plugins/unittest/interface_test.c +++ b/src/plugins/unittest/interface_test.c @@ -57,14 +57,12 @@ test_interface_command_fn (vlib_main_t * vm, return (NULL); } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_interface_command, static) = { .path = "test interface link-state", .short_help = "test interface link-state <interface> [up] [down]", .function = test_interface_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/ipsec_test.c b/src/plugins/unittest/ipsec_test.c index bb7f2a8d9e2..98253eeb12a 100644 --- a/src/plugins/unittest/ipsec_test.c +++ b/src/plugins/unittest/ipsec_test.c @@ -373,13 +373,11 @@ VLIB_CLI_COMMAND (test_ipsec_spd_perf_command, static) = { .function = test_ipsec_spd_outbound_perf_command_fn, }; -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_ipsec_command, static) = { .path = "test ipsec", .short_help = "test ipsec sa <ID> seq-num <VALUE>", .function = test_ipsec_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/llist_test.c b/src/plugins/unittest/llist_test.c index a67075de44e..5a712cde33e 100644 --- a/src/plugins/unittest/llist_test.c +++ b/src/plugins/unittest/llist_test.c @@ -132,13 +132,11 @@ llist_test_basic (vlib_main_t * vm, unformat_input_t * input) list_test_is_sane (pelts, ll_test, he); i--; - /* *INDENT-OFF* */ clib_llist_foreach (pelts, ll_test, he, e, ({ if (i != e->data) LLIST_TEST (0, "incorrect element i = %u data = %u", i, e->data); i--; })); - /* *INDENT-ON* */ LLIST_TEST (i == -1, "head insertion works i = %d", i); @@ -180,13 +178,11 @@ llist_test_basic (vlib_main_t * vm, unformat_input_t * input) "list should not be empty"); i--; - /* *INDENT-OFF* */ clib_llist_foreach_reverse (pelts, ll_test2, he2, e, ({ if (i != e->data) LLIST_TEST (0, "incorrect element i = %u data = %u", i, e->data); i--; })); - /* *INDENT-ON* */ LLIST_TEST (i == -1, "tail insertion works"); /* @@ -217,13 +213,11 @@ llist_test_basic (vlib_main_t * vm, unformat_input_t * input) i = 0; - /* *INDENT-OFF* */ clib_llist_foreach (pelts, ll_test, he, e, ({ if (i != e->data) LLIST_TEST (0, "incorrect element i = %u data = %u", i, e->data); i++; })); - /* *INDENT-ON* */ LLIST_TEST (i == 100, "move from ll_test2 to ll_test worked i %u", i); @@ -335,14 +329,12 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (llist_test_command, static) = { .path = "test llist", .short_help = "internal llist unit tests", .function = llist_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/mactime_test.c b/src/plugins/unittest/mactime_test.c index 46d6263b938..5bc195c9694 100644 --- a/src/plugins/unittest/mactime_test.c +++ b/src/plugins/unittest/mactime_test.c @@ -165,14 +165,12 @@ test_time_range_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_time_range_command, static) = { .path = "test time-range", .short_help = "test time-range", .function = test_time_range_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/mpcap_node.c b/src/plugins/unittest/mpcap_node.c index 083c22e32df..12c62cf13cd 100644 --- a/src/plugins/unittest/mpcap_node.c +++ b/src/plugins/unittest/mpcap_node.c @@ -215,7 +215,6 @@ VLIB_NODE_FN (mpcap_node) (vlib_main_t * vm, vlib_node_runtime_t * node, 0 /* is_trace */ ); } -/* *INDENT-OFF* */ #ifndef CLIB_MARCH_VARIANT VLIB_REGISTER_NODE (mpcap_node) = { @@ -249,7 +248,6 @@ mpcap_node_init (vlib_main_t *vm) VLIB_INIT_FUNCTION (mpcap_node_init); #endif /* CLIB_MARCH_VARIANT */ -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/punt_test.c b/src/plugins/unittest/punt_test.c index 0c4622283e0..7d00e5b8920 100644 --- a/src/plugins/unittest/punt_test.c +++ b/src/plugins/unittest/punt_test.c @@ -129,7 +129,6 @@ punt_test_pg1_ip6 (vlib_main_t * vm, return (punt_test_fwd (vm, node, frame, FIB_PROTOCOL_IP6, SW_IF_INDEX_PG1)); } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (punt_test_pg0_ip4_node) = { .function = punt_test_pg0_ip4, .name = "punt-test-pg0-ip4", @@ -154,7 +153,6 @@ VLIB_REGISTER_NODE (punt_test_pg1_ip6_node) = { .vector_size = sizeof (u32), .format_trace = format_punt_trace, }; -/* *INDENT-ON* */ typedef struct punt_feat_trace_t_ { @@ -242,7 +240,6 @@ punt_test_feat_ip6 (vlib_main_t * vm, return (punt_test_feat_inline (vm, node, frame, 0)); } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (punt_test_feat_ip6_node) = { .function = punt_test_feat_ip6, .name = "punt-test-feat-ip6", @@ -273,7 +270,6 @@ VNET_FEATURE_INIT (punt_test_feat_ip4_feature, static) = .arc_name = "ip4-unicast", .node_name = "punt-test-feat-ip4", }; -/* *INDENT-ON* */ static clib_error_t * punt_test (vlib_main_t * vm, @@ -382,14 +378,12 @@ punt_test (vlib_main_t * vm, return (NULL); } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_fib_command, static) = { .path = "test punt", .short_help = "punt unit tests - DO NOT RUN ON A LIVE SYSTEM", .function = punt_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/rbtree_test.c b/src/plugins/unittest/rbtree_test.c index bfab98c3cd7..4a1fcc4dd70 100644 --- a/src/plugins/unittest/rbtree_test.c +++ b/src/plugins/unittest/rbtree_test.c @@ -238,14 +238,12 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (rbtree_test_command, static) = { .path = "test rbtree", .short_help = "internal rbtree unit tests", .function = rbtree_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/segment_manager_test.c b/src/plugins/unittest/segment_manager_test.c index 35986c780aa..a106470ee48 100644 --- a/src/plugins/unittest/segment_manager_test.c +++ b/src/plugins/unittest/segment_manager_test.c @@ -79,7 +79,6 @@ placeholder_server_rx_callback (session_t * s) return -1; } -/* *INDENT-OFF* */ static session_cb_vft_t placeholder_session_cbs = { .session_reset_callback = placeholder_session_reset_callback, .session_connected_callback = placeholder_session_connected_callback, @@ -89,7 +88,6 @@ static session_cb_vft_t placeholder_session_cbs = { .add_segment_callback = placeholder_add_segment_callback, .del_segment_callback = placeholder_del_segment_callback, }; -/* *INDENT-ON* */ static char *states_str[] = { #define _(sym,str) str, @@ -776,7 +774,6 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (tcp_test_command, static) = { .path = "test segment-manager", diff --git a/src/plugins/unittest/session_test.c b/src/plugins/unittest/session_test.c index 96c2465f7fc..b7627acc129 100644 --- a/src/plugins/unittest/session_test.c +++ b/src/plugins/unittest/session_test.c @@ -107,7 +107,6 @@ placeholder_server_rx_callback (session_t * s) return -1; } -/* *INDENT-OFF* */ static session_cb_vft_t placeholder_session_cbs = { .session_reset_callback = placeholder_session_reset_callback, .session_connected_callback = placeholder_session_connected_callback, @@ -117,7 +116,6 @@ static session_cb_vft_t placeholder_session_cbs = { .add_segment_callback = placeholder_add_segment_callback, .del_segment_callback = placeholder_del_segment_callback, }; -/* *INDENT-ON* */ static int session_create_lookpback (u32 table_id, u32 * sw_if_index, @@ -2130,14 +2128,12 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (tcp_test_command, static) = { .path = "test session", .short_help = "internal session unit tests", .function = session_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/sparse_vec_test.c b/src/plugins/unittest/sparse_vec_test.c index bb875452cdf..b2239c64a18 100644 --- a/src/plugins/unittest/sparse_vec_test.c +++ b/src/plugins/unittest/sparse_vec_test.c @@ -55,14 +55,12 @@ test_sparse_vec_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_sparse_vec_command, static) = { .path = "test sparse_vec", .short_help = "test sparse_vec", .function = test_sparse_vec_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/string_test.c b/src/plugins/unittest/string_test.c index f0e40c5e142..3b39bf56478 100644 --- a/src/plugins/unittest/string_test.c +++ b/src/plugins/unittest/string_test.c @@ -1403,7 +1403,6 @@ string_test_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (string_test_command, static) = { .path = "test string", .short_help = @@ -1414,7 +1413,6 @@ VLIB_CLI_COMMAND (string_test_command, static) = { "strtok_s | clib_strtok | strnlen_s | clib_strnlen | strstr_s ]", .function = string_test_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/svm_fifo_test.c b/src/plugins/unittest/svm_fifo_test.c index 8e186a86c9d..9feb37cbc25 100644 --- a/src/plugins/unittest/svm_fifo_test.c +++ b/src/plugins/unittest/svm_fifo_test.c @@ -43,7 +43,6 @@ typedef struct u32 len; } test_pattern_t; -/* *INDENT-OFF* */ test_pattern_t test_pattern[] = { {380, 8}, {768, 8}, {1156, 8}, {1544, 8}, {1932, 8}, {2320, 8}, {2708, 8}, {2992, 8}, {372, 8}, {760, 8}, {1148, 8}, {1536, 8}, {1924, 8}, {2312, 8}, @@ -102,7 +101,6 @@ test_pattern_t test_pattern[] = { /* missing from original data set */ {388, 4}, {776, 4}, {1164, 4}, {1552, 4}, {1940, 4}, {2328, 4}, }; -/* *INDENT-ON* */ int pattern_cmp (const void *arg1, const void *arg2) @@ -1993,9 +1991,7 @@ sfifo_test_fifo_indirect (vlib_main_t * vm, unformat_input_t * input) return 0; } -/* *INDENT-OFF* */ svm_fifo_trace_elem_t fifo_trace[] = {}; -/* *INDENT-ON* */ static int sfifo_test_fifo_replay (vlib_main_t * vm, unformat_input_t * input) @@ -2863,14 +2859,12 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (svm_fifo_test_command, static) = { .path = "test svm fifo", .short_help = "internal svm fifo unit tests", .function = svm_fifo_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/tcp_test.c b/src/plugins/unittest/tcp_test.c index 25b6744244e..34033a0b622 100644 --- a/src/plugins/unittest/tcp_test.c +++ b/src/plugins/unittest/tcp_test.c @@ -35,9 +35,7 @@ } \ } -/* *INDENT-OFF* */ scoreboard_trace_elt_t sb_trace[] = {}; -/* *INDENT-ON* */ static int tcp_test_scoreboard_replay (vlib_main_t * vm, unformat_input_t * input) @@ -1596,14 +1594,12 @@ done: return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (tcp_test_command, static) = { .path = "test tcp", .short_help = "internal tcp unit tests", .function = tcp_test, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/test_buffer.c b/src/plugins/unittest/test_buffer.c index 584ce589012..24c86cd8697 100644 --- a/src/plugins/unittest/test_buffer.c +++ b/src/plugins/unittest/test_buffer.c @@ -262,14 +262,12 @@ test_linearize_fn (vlib_main_t * vm, unformat_input_t * input, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_linearize_command, static) = { .path = "test chained-buffer-linearization", .short_help = "test chained-buffer-linearization", .function = test_linearize_fn, }; -/* *INDENT-ON* */ static clib_error_t * test_linearize_speed_fn (vlib_main_t *vm, unformat_input_t *input, diff --git a/src/plugins/unittest/unittest.c b/src/plugins/unittest/unittest.c index 60ebac130da..555516fc9de 100644 --- a/src/plugins/unittest/unittest.c +++ b/src/plugins/unittest/unittest.c @@ -19,14 +19,12 @@ #include <vnet/plugin/plugin.h> #include <vpp/app/version.h> -/* *INDENT-OFF* */ VLIB_PLUGIN_REGISTER () = { .version = VPP_BUILD_VER, .description = "C unit tests", .default_disabled = 1, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/util_test.c b/src/plugins/unittest/util_test.c index 8dce270f814..53384e55494 100644 --- a/src/plugins/unittest/util_test.c +++ b/src/plugins/unittest/util_test.c @@ -22,13 +22,11 @@ test_crash_command_fn (vlib_main_t * vm, { u64 *p = (u64 *) 0xdefec8ed; - /* *INDENT-OFF* */ ELOG_TYPE_DECLARE (e) = { .format = "deliberate crash: touching %x", .format_args = "i4", }; - /* *INDENT-ON* */ elog (&vlib_global_main.elog_main, &e, 0xdefec8ed); *p = 0xdeadbeef; @@ -37,14 +35,12 @@ test_crash_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_crash_command, static) = { .path = "test crash", .short_help = "crash the bus!", .function = test_crash_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * test_hash_command_fn (vlib_main_t * vm, @@ -98,14 +94,12 @@ test_hash_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_hash_command, static) = { .path = "test hash_memory", .short_help = "page boundary crossing test", .function = test_hash_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/unittest/vlib_test.c b/src/plugins/unittest/vlib_test.c index 3154b7d21cf..c9c46901a4d 100644 --- a/src/plugins/unittest/vlib_test.c +++ b/src/plugins/unittest/vlib_test.c @@ -129,14 +129,12 @@ test_vlib_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_vlib_command, static) = { .path = "test vlib", .short_help = "vlib code coverage unit test", .function = test_vlib_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * test_format_vlib_command_fn (vlib_main_t * vm, @@ -180,14 +178,12 @@ test_format_vlib_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_format_vlib_command, static) = { .path = "test format-vlib", .short_help = "vlib format code coverate unit test", .function = test_format_vlib_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * test_vlib2_command_fn (vlib_main_t * vm, @@ -215,14 +211,12 @@ test_vlib2_command_fn (vlib_main_t * vm, 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* */ |