build: test eo fallback add

Summary:
this enables tests with the fallback implementation of EO.
Depends on D7924

Reviewers: stefan_schmidt, cedric, zmike, segfaultxavi

Reviewed By: zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7931
This commit is contained in:
Marcel Hollerbach 2019-02-25 07:59:13 -05:00 committed by Mike Blumenkrantz
parent f8c4011458
commit 8d2d5ae3b8
1 changed files with 14 additions and 0 deletions

View File

@ -45,3 +45,17 @@ eo_suite = executable('eo_suite_dbg',
test('eo-suite-dbg', eo_suite,
env : test_env
)
eo_suite = executable('eo_suite_fallback',
eo_suite_src,
dependencies: [eo_dbg, check, valgrind],
c_args : [
'-DTESTS_BUILD_DIR="'+meson.current_build_dir()+'"',
'-DEO_DEBUG=1',
'-D_EO_ADD_FALLBACK_FORCE=1',
'-DTESTS_SRC_DIR="'+meson.current_source_dir()+'"']
)
test('eo-suite-fallback', eo_suite,
env : test_env
)