summaryrefslogtreecommitdiffstats
path: root/t/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Split the library into a linkable and an LD_PRELOAD-able partGergely Nagy2012-08-101-5/+12
| | | | | | | | | | | | In order to satisfy the desire of using libumberlog, specifically ul_format(), without having to worry about syslog() & friends being overridden, split the library into two parts: A linkable library, which provides the new API, but does not override the legacy syslog() functions; and a new, LD_PRELOAD-able part, which does override the old ones. Signed-off-by: Gergely Nagy <algernon@balabit.hu>
* Don't create unnecessary libtool wrapper scripts for testsGergely Nagy2012-06-221-0/+1
| | | | | | | This marginally speeds up build, and simplifies debugging/valgrind runs Signed-off-by: Miloslav Trmač <mitr@redhat.com> Signed-off-by: Gergely Nagy <algernon@balabit.hu>
* Convert the test suite to CheckGergely Nagy2012-04-291-2/+2
| | | | | | | | | | | While assert() is a neat tool, it is not really suitable for testing, as it gives hardly any indication on what part of the test suite failed, and why. For this purpose, an existing testing library, such as Check is a much better option, so lets use that! Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* Make json-c optional.Gergely Nagy2012-04-131-0/+2
| | | | | | | When json-c is not found, instead of failing at configure time, continue, but disable the test suite. Signed-off-by: Gergely Nagy <algernon@balabit.hu>
* t/: Add a new performance test.Gergely Nagy2012-04-131-1/+1
| | | | | | | The new test case always succeeds, it's purpose is to echo the performance results. Signed-off-by: Gergely Nagy <algernon@balabit.hu>
* Rename the project to libumberlogGergely Nagy2012-03-231-2/+2
| | | | Signed-off-by: Gergely Nagy <algernon@balabit.hu>
* Implement a test suite.Gergely Nagy2012-03-201-0/+5
The test suite uses cee_format() to format the messages, and parses the resulting string back into JSON, and verifies that certain key values are what we expect them to be. Signed-off-by: Gergely Nagy <algernon@balabit.hu>