~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/unit/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Gergely Nagy
  • Date: 2011-10-11 14:30:48 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20111011143048-r1iljux9xbvj3lwh
Tags: 3.3.1.dfsg-1
* New upstream release with important fixes from upstream git tree with
  non-free manpages removed.
* Drop syslog-ng.conf(5) (closes: #496521).
* syslog-ng(8) is generated, and does not mention -Q anymore
  (closes: #616069).
* Supports CAP_SYSLOG on recent kernels (closes: #630172).
* Does not use g_timeout_add_seconds anymore (closes: #609154).

[ Gergely Nagy <algernon@madhouse-project.org> ]
* Update debian/copyright to DEP-5 format.
* Simplified the logrotate file by merging identical entries.
* Include local configuration files from /etc/syslog-ng/conf.d/ (Closes:
  #609050).
* Update syslog-ng.conf to be fully 3.3 compliant.
* Compress both source and binaries (except the syslog-ng meta
  package) with xz, instead of gzip.
* Use dpkg triggers to restart syslog-ng when appropriate.
* Include DFSG-free manual pages for all binaries.
* Build with Hardening enabled.
* Mention syslog(3) in /etc/default/syslog-ng, instead of
  <linux/kernel.h> (Closes: #608605)
* Support 'status' in the init script.
  Patch from Peter Eisentraut <petere@debian.org> (Closes: #644458)
* Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs.
* Use [linux-any] in Build-Depends instead of hardcoded links.
  (Closes: #634715)
* Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng.
  (Closes: #589081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
LIBS = @TOOL_DEPS_LIBS@
6
6
LDADD = $(top_builddir)/lib/libsyslog-ng.la
7
7
 
8
 
check_PROGRAMS = test_persist_state test_resolve_pwgr test_nvtable test_msgsdata \
9
 
        test_logqueue test_matcher test_clone_logmsg test_csvparser \
10
 
        test_serialize test_msgparse test_template test_template_speed test_zone \
11
 
        test_filters test_dnscache test_findeom test_findcrlf test_tags \
12
 
        test_logwriter
 
8
check_PROGRAMS = test_thread_wakeup     \
 
9
        test_resolve_pwgr               \
 
10
        test_nvtable                    \
 
11
        test_msgsdata                   \
 
12
        test_logqueue                   \
 
13
        test_matcher                    \
 
14
        test_clone_logmsg               \
 
15
        test_csvparser                  \
 
16
        test_serialize                  \
 
17
        test_msgparse                   \
 
18
        test_template                   \
 
19
        test_template_speed             \
 
20
        test_filters                    \
 
21
        test_dnscache                   \
 
22
        test_findeom                    \
 
23
        test_findcrlf                   \
 
24
        test_tags                       \
 
25
        test_logwriter                  \
 
26
        test_serialize                  \
 
27
        test_zone                       \
 
28
        test_persist_state              \
 
29
        test_value_pairs
13
30
 
14
31
test_msgparse_SOURCES = test_msgparse.c libtest.c
15
32
test_template_SOURCES = test_template.c libtest.c
32
49
test_logwriter_SOURCES = test_logwriter.c
33
50
test_resolve_pwgr_SOURCES = test_resolve_pwgr.c
34
51
test_persist_state_SOURCES = test_persist_state.c
 
52
test_value_pairs_SOURCES = test_value_pairs.c
 
53
 
 
54
 
 
55
test_thread_wakeup_SOURCES = test_thread_wakeup.c
35
56
 
36
57
TESTS = $(check_PROGRAMS)
37
58