From 18402def5a5a913ee7e1c9b2ba8438e7e57d5db9 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 9 Sep 2016 01:48:50 +0200 Subject: [PATCH] Add an INOUT argument to the AppBroker test --- tests/Test.expected | 1 + tests/Test.interface | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/tests/Test.expected b/tests/Test.expected index 9d7533a..dc9a1af 100644 --- a/tests/Test.expected +++ b/tests/Test.expected @@ -72,5 +72,6 @@ typedef String ** STRING_INOUT; /* calls */ void Test_Test(App * app, AppServerClient * client, INT32 i32); +void Test_Test2(App * app, AppServerClient * client, INT32_INOUT i32); #endif /* !Test_Test_H */ diff --git a/tests/Test.interface b/tests/Test.interface index 9ac56b8..d7c519d 100644 --- a/tests/Test.interface +++ b/tests/Test.interface @@ -4,3 +4,7 @@ service=Test [call::Test] #ret=void arg1=INT32,i32 + +[call::Test2] +#ret=void +arg1=INT32_INOUT,i32