diff options
author | Ole Troan <ot@cisco.com> | 2021-02-12 11:48:12 +0100 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-02-12 14:51:41 +0000 |
commit | cf0102b3ba69cb6bad6b1bae159e51976e2331f8 (patch) | |
tree | cba402e4bc74ae53771b227f606c6c30fe7b591d /src/vat2/test/vat2_test.c | |
parent | b789f9992b899916510764dbb94b908e3224c3b5 (diff) |
vppapigen: coverity issues in autogenerated code pass 3.
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I5ee2e8aba3ee7281bbca11825dece79983e52f06
Diffstat (limited to 'src/vat2/test/vat2_test.c')
-rw-r--r-- | src/vat2/test/vat2_test.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/vat2/test/vat2_test.c b/src/vat2/test/vat2_test.c index b5346eeea47..10cfee4be17 100644 --- a/src/vat2/test/vat2_test.c +++ b/src/vat2/test/vat2_test.c @@ -84,6 +84,7 @@ runtest (char *s, bool should_fail) assert(name); uword *p = hash_get_mem(function_by_name_tojson, name); + printf ("Message name: %s\n", name); assert(p); tojson_fn_t tojson = (tojson_fn_t)p[0]; @@ -116,6 +117,31 @@ struct msgs msgs[] = { .tojson = (tojson_fn_t) vl_api_test_string2_t_tojson, .fromjson = (fromjson_fn_t) vl_api_test_string2_t_fromjson, }, + { + .name = "test_vla", + .tojson = (tojson_fn_t) vl_api_test_vla_t_tojson, + .fromjson = (fromjson_fn_t) vl_api_test_vla_t_fromjson, + }, + { + .name = "test_vla2", + .tojson = (tojson_fn_t) vl_api_test_vla2_t_tojson, + .fromjson = (fromjson_fn_t) vl_api_test_vla2_t_fromjson, + }, + { + .name = "test_vla3", + .tojson = (tojson_fn_t) vl_api_test_vla3_t_tojson, + .fromjson = (fromjson_fn_t) vl_api_test_vla3_t_fromjson, + }, + { + .name = "test_vla4", + .tojson = (tojson_fn_t) vl_api_test_vla4_t_tojson, + .fromjson = (fromjson_fn_t) vl_api_test_vla4_t_fromjson, + }, + { + .name = "test_vla5", + .tojson = (tojson_fn_t) vl_api_test_vla5_t_tojson, + .fromjson = (fromjson_fn_t) vl_api_test_vla5_t_fromjson, + }, }; struct tests tests[] = { @@ -128,6 +154,15 @@ struct tests tests[] = { "type\"}}" }, { .s = "{\"_msgname\": \"test_string2\", \"str\": \"Test string toplevel\"}" }, + { .s = "{\"_msgname\": \"test_vla\", \"count\": 5, \"vla\": [1,2,3,4,5]}" }, + { .s = "{\"_msgname\": \"test_vla2\", \"count\": 5, \"vla\": " + "\"0xaabbccddee\"}" }, + { .s = "{\"_msgname\": \"test_vla3\", \"count\": 2, \"vla\": [{\"data\": 1} " + ", {\"data\": 2} ] }" }, + { .s = "{\"_msgname\": \"test_vla4\", \"data\": { \"count\": 5, \"vla\": " + "[1,2,3,4,5] }}" }, + { .s = "{\"_msgname\": \"test_vla5\", \"data\": { \"count\": 5, \"vla\": " + "\"0xaabbccddee\" }}" }, }; int main (int argc, char **argv) |