1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
### Include common Makefile configuration
#
include $(top_srcdir)/build/Makefile.am.common
### Which tests to run
#
TESTS =
XFAIL_TESTS =
if OUTPUT_ENABLED_stdout
TESTS += unit-action-log-message-dispatch.sh
TESTS += unit-action-log-syscall-exec.sh
endif
if DATASOURCE_ENABLED_cmdline
TESTS += unit-datasource-cmdline.sh
endif
TESTS += unit-error.sh
if CONFIGFILE_ENABLED
TESTS += unit-ext-ini.sh
endif
if FILTERING_ENABLED
TESTS += unit-filterregistry.sh
endif
TESTS += unit-outputregistry.sh
TESTS += unit-util-parser.sh
TESTS += unit-util-syslog.sh
if DATASOURCE_ENABLED_systemd_unit_name
TESTS += unit-util-systemd.sh
endif
if DATASOURCE_ENABLED_ipaddr
TESTS += unit-util-utmp-entry-missing.sh
TESTS += unit-util-utmp-entry-without-ip-address.sh
TESTS += unit-util-utmp-ipv4.sh
TESTS += unit-util-utmp-ipv6.sh
endif
### Include tests in distribution archive
#
EXTRA_DIST = _bootstrap.sh
EXTRA_DIST += $(TESTS)
if DATASOURCE_ENABLED_ipaddr
EXTRA_DIST += unit-util-utmp-testUtmpFile
endif
|