diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-11 16:42:46 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-11 16:43:37 +0200 |
commit | cfbc22abd0525570a6e58968d518ea9a7d0403ba (patch) | |
tree | 75654346772c2d74c1b1837d1cf7c4b545d56cdf /Makefile.am | |
parent | fb5d873cfd4606383964c707da0ec21ebaa1c04b (diff) |
journalctl: implement --since= and --until for filtering by time
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index c23afdf173..e332183a64 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1157,14 +1157,16 @@ noinst_PROGRAMS += \ test-watchdog \ test-unit-name \ test-log \ - test-unit-file + test-unit-file \ + test-date TESTS += \ test-job-type \ test-env-replace \ test-strv \ test-unit-name \ - test-unit-file + test-unit-file \ + test-data test_engine_SOURCES = \ src/test/test-engine.c @@ -1226,6 +1228,12 @@ test_log_SOURCES = \ test_log_LDADD = \ libsystemd-core.la +test_date_SOURCES = \ + src/test/test-date.c + +test_date_LDADD = \ + libsystemd-core.la + test_daemon_SOURCES = \ src/test/test-daemon.c |