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

« back to all changes in this revision

Viewing changes to tests/unit/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-08-04 17:17:51 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100804171751-5bvfxhlc5xrmi3n8
Tags: 3.1.2-1
* New upstream release. 
* Update to Standards-Version 3.9.1 .
* Build depend on libcap-dev to add capability support on Linux archs.
* Disable statistics logging (closes: #586749) and restore logging to
  /var/log/syslog .

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
LIBS = @DEPS_LIBS@
5
5
LDADD = $(top_builddir)/src/libsyslog-ng.a
6
6
 
7
 
check_PROGRAMS = test_nvtable test_msgsdata test_radix test_logqueue test_matcher test_clone_logmsg test_csvparser test_serialize test_msgparse test_template test_template_speed test_zone test_filters test_dnscache test_findeom test_findcrlf test_tags test_patterndb test_logwriter
 
7
check_PROGRAMS = test_resolve_pwgr test_nvtable test_msgsdata test_radix test_logqueue test_matcher test_clone_logmsg test_csvparser test_serialize test_msgparse test_template test_template_speed test_zone test_filters test_dnscache test_findeom test_findcrlf test_tags test_patterndb_v2 test_patterndb_v3 test_logwriter
8
8
 
9
9
test_msgparse_SOURCES = test_msgparse.c libtest.c
10
10
test_template_SOURCES = test_template.c libtest.c
24
24
test_tags_SOURCES = test_tags.c
25
25
test_nvtable_SOURCES = test_nvtable.c
26
26
test_logwriter_SOURCES = test_logwriter.c
 
27
test_resolve_pwgr_SOURCES = test_resolve_pwgr.c
 
28
test_patterndb_v2_SOURCES = test_patterndb_v2.c
 
29
test_patterndb_v3_SOURCES = test_patterndb_v3.c libtest.c
27
30
 
28
31
TESTS = $(check_PROGRAMS)
29
32