move tests from 'tests/lumiera' to 'tests/common' to reflect src layout

This commit is contained in:
Christian Thaeter 2008-12-23 07:02:38 +01:00
parent a0ff1f611a
commit 7db0ba61d8
5 changed files with 15 additions and 7 deletions

View file

@ -60,12 +60,20 @@ test_filehandles_CPPFLAGS = $(AM_CPPFLAGS) -std=gnu99 -Wall -Werror
test_filehandles_LDADD = liblumierabackend.la liblumiera.la $(NOBUGMT_LUMIERA_LIBS) liblumieracommon.la liblumieraproc.la -ldl -lboost_program_options-mt -lboost_regex-mt
check_PROGRAMS += test-config
test_config_SOURCES = $(tests_srcdir)/lumiera/test-config.c
test_config_SOURCES = $(tests_srcdir)/common/test-config.c
test_config_CPPFLAGS = $(AM_CPPFLAGS) -std=gnu99 -Wall -Werror -I$(top_srcdir)/src/
test_config_LDADD = liblumiera.la $(LUMIERA_PLUGIN_LIBS) $(NOBUGMT_LUMIERA_LIBS) liblumieracommon.la liblumieraproc.la -ldl -lboost_program_options-mt -lboost_regex-mt
test_config_LDADD = \
liblumieraproc.la \
liblumieracommon.la \
liblumiera.la \
$(LUMIERA_PLUGIN_LIBS) \
$(NOBUGMT_LUMIERA_LIBS) \
-ldl \
-lboost_program_options-mt \
-lboost_regex-mt
check_LTLIBRARIES += examplepluginc.la
examplepluginc_la_SOURCES = $(tests_srcdir)/plugin/example_plugin.c
@ -73,7 +81,7 @@ examplepluginc_la_CPPFLAGS = $(AM_CPPFLAGS) -std=gnu99 -Wall -Werror -DLUMIERA_P
examplepluginc_la_LDFLAGS = -module -avoid-version -no-undefined -rpath /dev/null
check_PROGRAMS += test-interfaces
test_interfaces_SOURCES = $(tests_srcdir)/lumiera/test-interfaces.c
test_interfaces_SOURCES = $(tests_srcdir)/common/test-interfaces.c
test_interfaces_CPPFLAGS = $(AM_CPPFLAGS) -std=gnu99 -Wall -Werror
test_interfaces_LDADD = liblumiera.la $(LUMIERA_PLUGIN_LIBS) $(NOBUGMT_LUMIERA_LIBS) liblumieracommon.la liblumieraproc.la -ldl -lboost_program_options-mt -lboost_regex-mt
test_interfaces_DEPENDENCIES = examplepluginc.la liblumiera.la

View file

@ -26,7 +26,7 @@
#include "common/config_interface.h"
#include "tests/test.h"
#include "tests/lumiera/hello_interface.h"
#include "tests/common/hello_interface.h"
/*
define 2 example interfaces

View file

@ -26,7 +26,7 @@
#include "common/interfacedescriptor.h"
#include "common/config_interface.h"
#include "tests/lumiera/hello_interface.h"
#include "tests/common/hello_interface.h"
LUMIERA_PLUGIN_INTERFACEHANDLE;