tests: Add missing function implementations

In eolian test cases.
Not a problem when EOAPI is defined as weak, but compilation
will fail if the symbols are strong. Eg. on Solaris (it's just
a guess).

Fixes T3889
This commit is contained in:
Jean-Philippe Andre 2016-07-28 20:10:39 +09:00
parent ba060fe932
commit feccbc7d83
1 changed files with 10 additions and 0 deletions

View File

@ -47,5 +47,15 @@ static void _generated_promise_method3(Eo *obj EINA_UNUSED, Generated_Promise_Da
ck_assert(promise1 != NULL);
}
static void _generated_promise_method_multiple_args_1(Eo *obj EINA_UNUSED, Generated_Promise_Data *pd EINA_UNUSED,
Eina_Promise_Owner *promise1 EINA_UNUSED, void *data EINA_UNUSED)
{
}
static void _generated_promise_method_multiple_args_2(Eo *obj EINA_UNUSED, Generated_Promise_Data *pd EINA_UNUSED,
void *data EINA_UNUSED, Eina_Promise_Owner *promise1 EINA_UNUSED)
{
}
#include "generated_promise.eo.h"
#include "generated_promise.eo.c"