tests: fix elua test with autotools
authorDaniel Kolesa <d.kolesa@samsung.com>
Thu, 21 Feb 2019 20:51:55 +0000 (21:51 +0100)
committerWonki Kim <wonki_.kim@samsung.com>
Fri, 8 Mar 2019 11:49:35 +0000 (20:49 +0900)
For one, TESTS_SRC_DIR was missing even though it's present in
meson. For two, top_builddir/top_srcdir are relative paths, which
means the chdir added earlier would result in a wrong apps dir
being pointed to; fix that by making all paths passed into the
tests source absolute.

src/Makefile_Elua.am

index bc2513f..5b1004b 100644 (file)
@@ -123,13 +123,14 @@ tests/elua/elua_suite.c \
 tests/elua/elua_suite.h
 
 tests_elua_elua_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \
--DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elua\" \
+-DTESTS_BUILD_DIR=\"$(abs_top_builddir)/src/tests/elua\" \
+-DTESTS_SRC_DIR=\"$(abs_top_srcdir)/src/tests/elua\" \
 -DPACKAGE_DATA_DIR=\"$(top_srcdir)/src/tests/elua\" \
 -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \
 -DELUA_BINDINGS_DIR=\"$(ELUA_BINDINGS_DIR)\" \
 -DELUA_CORE_DIR=\"$(ELUA_CORE_DIR)\" \
 -DELUA_MODULES_DIR=\"$(ELUA_MODULES_DIR)\" \
--DELUA_APPS_DIR=\"$(top_srcdir)/src/tests/elua/data/apps\" \
+-DELUA_APPS_DIR=\"$(abs_top_srcdir)/src/tests/elua/data/apps\" \
 @CHECK_CFLAGS@ \
 @ELUA_CFLAGS@