diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-09-11 01:11:32 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-09-11 01:14:25 +0200 |
commit | b5b46d599524341ddd7407e5dff1021af8ff5089 (patch) | |
tree | 05e2bb1a8800ab7800f1c7c3455d7c07cb7a1af5 /Makefile.am | |
parent | 802840582c71e9679637a4631866ce2d179f03c5 (diff) |
when determining unit file list, include invalid unit names in an "invalid" state
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 df3d3cad9d..135d9f8ab1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1120,13 +1120,15 @@ noinst_PROGRAMS += \ test-install \ test-watchdog \ test-unit-name \ - test-log + test-log \ + test-unit-file TESTS += \ test-job-type \ test-env-replace \ test-strv \ - test-unit-name + test-unit-name \ + test-unit-file test_engine_SOURCES = \ src/test/test-engine.c @@ -1176,6 +1178,12 @@ test_unit_name_SOURCES = \ test_unit_name_LDADD = \ libsystemd-core.la +test_unit_file_SOURCES = \ + src/test/test-unit-file.c + +test_unit_file_LDADD = \ + libsystemd-core.la + test_log_SOURCES = \ src/test/test-log.c |