From 75f143e0fc0d5a42042b170460a05e149867662c Mon Sep 17 00:00:00 2001 From: heck Date: Fri, 16 Jun 2023 13:29:57 +0200 Subject: [PATCH] test: idl-api - add deftype of all types including deftypes --- idl/test_api/test_api.yml2 | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/idl/test_api/test_api.yml2 b/idl/test_api/test_api.yml2 index 67353c8..12c8b89 100644 --- a/idl/test_api/test_api.yml2 +++ b/idl/test_api/test_api.yml2 @@ -3,9 +3,14 @@ pEpACIDLang { package idl_test { api typesys { - deftype deftype1 as size; - deftype deftype2 as string; - deftype stringlist as list; + deftype dt_int as int; + deftype dt_string as string; + deftype dt_enum as enum1; + deftype dt_struct as struct1; + deftype dt_list_of_string as list; + deftype dt_pair_int_string as pair; + deftype dt_dt_list_of_string as dt_list_of_string; + deftype dt_dt_dt_list_of_string as dt_dt_list_of_string; enum enum1 { item item1;