From d1bf11f819c0c3b6c6357707a9a608407cafc335 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 13 Mar 2018 10:37:55 -0400 Subject: [PATCH] tests: use buffer engine for elm_suite if engine is not specified this should add some consistency to tests Signed-off-by: Mike Blumenkrantz --- src/tests/elementary/elm_suite.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/elementary/elm_suite.c b/src/tests/elementary/elm_suite.c index 1e7190ee7e..cd0e3f4b43 100644 --- a/src/tests/elementary/elm_suite.c +++ b/src/tests/elementary/elm_suite.c @@ -98,8 +98,9 @@ main(int argc, char **argv) #ifdef NEED_RUN_IN_TREE putenv("EFL_RUN_IN_TREE=1"); - putenv("EFL_RUN_IN_TREE=1"); #endif + if (!getenv("ELM_ENGINE")) + putenv("ELM_ENGINE=buffer"); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, "Elementary", etc);