stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ab430e3ee555973e84fbfaa36291abbc2abb72fb
commit ab430e3ee555973e84fbfaa36291abbc2abb72fb Author: Mike Blumenkrantz <[email protected]> Date: Wed Apr 18 13:58:15 2018 +0200 tests: preload elm csd theme in elm_suite startup Summary: ref T6864 Depends on D5958 Reviewers: stefan_schmidt Subscribers: cedric Maniphest Tasks: T6864 Differential Revision: https://phab.enlightenment.org/D5959 --- src/tests/elementary/elm_suite.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/elementary/elm_suite.c b/src/tests/elementary/elm_suite.c index e1d899defb..b7e07bd45b 100644 --- a/src/tests/elementary/elm_suite.c +++ b/src/tests/elementary/elm_suite.c @@ -155,6 +155,8 @@ main(int argc, char **argv) /* preload default theme */ failed_count += !elm_theme_group_path_find(NULL, "elm/button/base/default"); EINA_SAFETY_ON_TRUE_RETURN_VAL(failed_count, 255); + failed_count += !elm_theme_group_path_find(NULL, "elm/border/base/default"); + EINA_SAFETY_ON_TRUE_RETURN_VAL(failed_count, 255); failed_count += !elm_theme_group_path_find(NULL, "elm/win/base/default"); EINA_SAFETY_ON_TRUE_RETURN_VAL(failed_count, 255); --
