From 6d1bdd2eb8e61bb96437b680d0adc50d03d74b41 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 14 Sep 2016 02:15:55 +0200 Subject: [PATCH] Complete the "appbroker.sh" test some more --- tests/Test.expected | 5 +++-- tests/Test.interface | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/Test.expected b/tests/Test.expected index 5440aa8..a410d05 100644 --- a/tests/Test.expected +++ b/tests/Test.expected @@ -12,7 +12,8 @@ /* calls */ void Test_Test(App * app, AppServerClient * client, int32_t i32); -bool Test_Test2(App * app, AppServerClient * client, int32_t * i32); -String const * Test_Test3(App * app, AppServerClient * client, int32_t *); +bool Test_Test2(App * app, AppServerClient * client, int32_t *); +String const * Test_Test3(App * app, AppServerClient * client); +void Test_Test4(App * app, AppServerClient * client, int8_t, uint16_t); #endif /* !Test_Test_H */ diff --git a/tests/Test.interface b/tests/Test.interface index 82c8782..b119cde 100644 --- a/tests/Test.interface +++ b/tests/Test.interface @@ -7,8 +7,11 @@ arg1=INT32,i32 [call::Test2] ret=BOOL -arg1=INT32_INOUT,i32 +arg1=INT32_INOUT [call::Test3] ret=STRING -arg1=INT32_INOUT + +[call::Test4] +arg1=INT8 +arg2=UINT16