diff options
author | Felipe Magno de Almeida <felipe@expertisesolutions.com.br> | 2016-05-23 12:33:37 -0300 |
---|---|---|
committer | Felipe Magno de Almeida <felipe@expertisesolutions.com.br> | 2016-05-23 16:08:41 -0300 |
commit | 8fd1656898c26f547bb76ef86da2827e447ecb3b (patch) | |
tree | d30bb6a6cd3db8666da13c834cf119ffb889bc2a /src/Makefile_Eolian_Cxx.am | |
parent | b613d6f1d98a511daf6524778ccadf8fadf75e3d (diff) |
eolian-cxx: Add test for list and array complex types
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Eolian_Cxx.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am index 98aa5e3022..a88df99808 100644 --- a/src/Makefile_Eolian_Cxx.am +++ b/src/Makefile_Eolian_Cxx.am | |||
@@ -78,6 +78,8 @@ tests/eolian_cxx/name_name_cxx.cc \ | |||
78 | tests/eolian_cxx/generic.c \ | 78 | tests/eolian_cxx/generic.c \ |
79 | tests/eolian_cxx/eolian_cxx_test_inheritance.cc \ | 79 | tests/eolian_cxx/eolian_cxx_test_inheritance.cc \ |
80 | tests/eolian_cxx/eolian_cxx_test_generate.cc \ | 80 | tests/eolian_cxx/eolian_cxx_test_generate.cc \ |
81 | tests/eolian_cxx/complex.c \ | ||
82 | tests/eolian_cxx/complex_cxx.cc \ | ||
81 | tests/eolian_cxx/eolian_cxx_suite.h | 83 | tests/eolian_cxx/eolian_cxx_suite.h |
82 | 84 | ||
83 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-eolian_cxx_test_wrapper.$(OBJEXT): tests/eolian_cxx/callback.eo.hh tests/eolian_cxx/callback.eo.h | 85 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-eolian_cxx_test_wrapper.$(OBJEXT): tests/eolian_cxx/callback.eo.hh tests/eolian_cxx/callback.eo.h |
@@ -97,6 +99,9 @@ tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-d.$(OBJEXT): tests/eolian_cxx | |||
97 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-name_name.$(OBJEXT): tests/eolian_cxx/name_name.eo.c tests/eolian_cxx/name_name.eo.h tests/eolian_cxx/ns_name.eo.c tests/eolian_cxx/ns_name.eo.h tests/eolian_cxx/ns_name_other.eo.c tests/eolian_cxx/ns_name_other.eo.h | 99 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-name_name.$(OBJEXT): tests/eolian_cxx/name_name.eo.c tests/eolian_cxx/name_name.eo.h tests/eolian_cxx/ns_name.eo.c tests/eolian_cxx/ns_name.eo.h tests/eolian_cxx/ns_name_other.eo.c tests/eolian_cxx/ns_name_other.eo.h |
98 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-name_name_cxx.$(OBJEXT): tests/eolian_cxx/name_name.eo.h tests/eolian_cxx/name_name.eo.hh tests/eolian_cxx/ns_name.eo.h tests/eolian_cxx/ns_name.eo.hh tests/eolian_cxx/ns_name_other.eo.h tests/eolian_cxx/ns_name_other.eo.hh | 100 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-name_name_cxx.$(OBJEXT): tests/eolian_cxx/name_name.eo.h tests/eolian_cxx/name_name.eo.hh tests/eolian_cxx/ns_name.eo.h tests/eolian_cxx/ns_name.eo.hh tests/eolian_cxx/ns_name_other.eo.h tests/eolian_cxx/ns_name_other.eo.hh |
99 | 101 | ||
102 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-complex.$(OBJEXT): tests/eolian_cxx/complex.eo.c tests/eolian_cxx/complex.eo.h | ||
103 | tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-complex_cxx.$(OBJEXT): tests/eolian_cxx/complex.eo.h tests/eolian_cxx/complex.eo.hh | ||
104 | |||
100 | CLEANFILES += \ | 105 | CLEANFILES += \ |
101 | tests/eolian_cxx/callback.eo.hh \ | 106 | tests/eolian_cxx/callback.eo.hh \ |
102 | tests/eolian_cxx/callback.eo.c \ | 107 | tests/eolian_cxx/callback.eo.c \ |
@@ -125,7 +130,11 @@ tests/eolian_cxx/ns_name.eo.impl.hh \ | |||
125 | tests/eolian_cxx/ns_name_other.eo.hh \ | 130 | tests/eolian_cxx/ns_name_other.eo.hh \ |
126 | tests/eolian_cxx/ns_name_other.eo.c \ | 131 | tests/eolian_cxx/ns_name_other.eo.c \ |
127 | tests/eolian_cxx/ns_name_other.eo.h \ | 132 | tests/eolian_cxx/ns_name_other.eo.h \ |
128 | tests/eolian_cxx/ns_name_other.eo.impl.hh | 133 | tests/eolian_cxx/ns_name_other.eo.impl.hh \ |
134 | tests/eolian_cxx/complex.eo.hh \ | ||
135 | tests/eolian_cxx/complex.eo.c \ | ||
136 | tests/eolian_cxx/complex.eo.h \ | ||
137 | tests/eolian_cxx/complex.eo.impl.hh | ||
129 | 138 | ||
130 | 139 | ||
131 | tests_eolian_cxx_eolian_cxx_suite_CXXFLAGS = \ | 140 | tests_eolian_cxx_eolian_cxx_suite_CXXFLAGS = \ |