diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2016-11-07 12:03:13 -0800 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2016-11-07 12:03:55 -0800 |
commit | d45e3abdba21a376f0cc5b39e5807260510c1574 (patch) | |
tree | ba532bbdb096e9d30856807b936149b0b92beb0f /src/tests/eolian_cxx | |
parent | 8a471e96be5f350b01e73444ccafd28fa992d007 (diff) | |
download | efl-d45e3abdba21a376f0cc5b39e5807260510c1574.tar.gz |
eolian_cxx: do not test Eina_Promise anymore.
Diffstat (limited to 'src/tests/eolian_cxx')
-rw-r--r-- | src/tests/eolian_cxx/complex.c | 21 | ||||
-rw-r--r-- | src/tests/eolian_cxx/complex.eo | 18 |
2 files changed, 0 insertions, 39 deletions
diff --git a/src/tests/eolian_cxx/complex.c b/src/tests/eolian_cxx/complex.c index e4c72eee1b..dc437348b2 100644 --- a/src/tests/eolian_cxx/complex.c +++ b/src/tests/eolian_cxx/complex.c @@ -228,25 +228,4 @@ _complex_wrapper_out(Eo *obj EINA_UNUSED, Complex_Data *pd EINA_UNUSED, Complex { } -EOLIAN static Eina_Promise * -_complex_with_promise_r(Eo *obj EINA_UNUSED, Complex_Data *pd EINA_UNUSED) -{ - return NULL; -} - -EOLIAN static void -_complex_with_promise_in(Eo *obj EINA_UNUSED, Complex_Data *pd EINA_UNUSED, Eina_Promise *p EINA_UNUSED) -{ -} - -EOLIAN static void -_complex_with_promise_out(Eo *obj EINA_UNUSED, Complex_Data *pd EINA_UNUSED, Eina_Promise **p EINA_UNUSED) -{ -} - -EOLIAN static void -_complex_with_promise_inout(Eo *obj EINA_UNUSED, Complex_Data *pd EINA_UNUSED, Eina_Promise_Owner *p EINA_UNUSED) -{ -} - #include "complex.eo.c" diff --git a/src/tests/eolian_cxx/complex.eo b/src/tests/eolian_cxx/complex.eo index 73e2395c58..8fe7f1cbf9 100644 --- a/src/tests/eolian_cxx/complex.eo +++ b/src/tests/eolian_cxx/complex.eo @@ -216,24 +216,6 @@ class Complex (Efl.Object) @out a1: Complex; } } - with_promise_r { - return: promise<int>; - } - with_promise_in { - params { - @in p: promise<int>; - } - } - with_promise_out { - params { - @out p: promise<int>; - } - } - with_promise_inout { - params { - @inout p: promise<int>; - } - } } } |