mirror of
https://github.com/rsyslog/rsyslog.git
synced 2026-06-20 05:12:56 +02:00
worked on ways to provide a better test suite: - added -T rsyslogd command line option, enables to specify a directory where to chroot() into on startup. This is NOT a security feature but introduced to support testing. Thus, -T does not make sure chroot() is used in a secure way. (may be removed later) - added omstdout module for testing purposes. Spits out all messages to stdout - no config option, no other features - modified $ModLoad statement so that for modules whom's name starts with a dot, no path is prepended (this enables relative-pathes and should not break any valid current config)
33 lines
946 B
Makefile
33 lines
946 B
Makefile
#AUTOMAKE_OPTIONS=dejagnu
|
|
#DEJATOOL=Rainer
|
|
|
|
check_PROGRAMS = rt_init rscript
|
|
TESTS = $(check_PROGRAMS) cfg.sh
|
|
TESTS_ENVIRONMENT = RSYSLOG_MODDIR='$(abs_top_builddir)'/runtime/.libs/
|
|
#TESTS = $(check_PROGRAMS)
|
|
|
|
test_files = testbench.h runtime-dummy.c
|
|
EXTRA_DIST=1.rstest 2.rstest 3.rstest err1.rstest \
|
|
cfg.sh \
|
|
cfg1.cfgtest \
|
|
cfg1.testin \
|
|
cfg2.cfgtest \
|
|
cfg2.testin \
|
|
cfg3.cfgtest \
|
|
cfg3.testin \
|
|
cfg4.cfgtest \
|
|
cfg4.testin \
|
|
DevNull.cfgtest \
|
|
err1.rstest \
|
|
NoExistFile.cfgtest
|
|
|
|
rt_init_SOURCES = rt-init.c $(test_files)
|
|
rt_init_CPPFLAGS = -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
rt_init_LDADD = $(RSRT_LIBS) $(ZLIB_LIBS) $(PTHREADS_LIBS)
|
|
rt_init_LDFLAGS = -export-dynamic
|
|
|
|
rscript_SOURCES = rscript.c $(test_files)
|
|
rscript_CPPFLAGS = -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
rscript_LDADD = $(RSRT_LIBS) $(ZLIB_LIBS) $(PTHREADS_LIBS)
|
|
rscript_LDFLAGS = -export-dynamic
|