X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvat2%2Ftest%2Fvat2_test.api;h=58961475e30fe881386303264d252fd91e7eebb0;hb=316967cfa;hp=fe96dd75784486bd14b55d0374838769d8eeab64;hpb=fb0afab7f539f1e28fc01d98b446e3ce1e9812d0;p=vpp.git diff --git a/src/vat2/test/vat2_test.api b/src/vat2/test/vat2_test.api index fe96dd75784..58961475e30 100644 --- a/src/vat2/test/vat2_test.api +++ b/src/vat2/test/vat2_test.api @@ -36,6 +36,48 @@ typedef test_stringtype { autoreply define test_string { vl_api_test_stringtype_t str; }; + autoreply define test_string2 { string str[]; }; + +/* Test of toplevel VLA with basetype */ +autoreply define test_vla { + u32 count; + u32 vla[count]; +}; + +/* Test of toplevel VLA with u8 */ +autoreply define test_vla2 { + u32 count; + u8 vla[count]; +}; +/* Test of toplevel VLA with user type */ +typedef test_vlatype { + u32 data; +}; +autoreply define test_vla3 { + u32 count; + vl_api_test_vlatype_t vla[count]; +}; +/* Test of typedefed VLA */ +typedef test_vlatype2 { + u32 count; + u32 vla[count]; +}; +autoreply define test_vla4 { + vl_api_test_vlatype2_t data; +}; +/* u8 string in typedef */ +typedef test_vlatype3 { + u32 count; + u8 vla[count]; +}; +autoreply define test_vla5 { + vl_api_test_vlatype3_t data; +}; + +/* Addresses */ +autoreply define test_addresses { + vl_api_address_t a; +};