diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-10-22 20:39:18 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-10-22 22:54:09 -0400 |
commit | d8c9d3a468e61ee2a2b2c3454e662398b0885411 (patch) | |
tree | 071accb03d22bffa24f1a2c1c2284a3c70570bc8 /Makefile.am | |
parent | 0fb0c56f5283a8a94560f595768a801c8240a9bd (diff) |
systemd: use unit name in PrivateTmp directories
Unit name is used whole in the directory name, so that the unit name
can be easily extracted from it, e.g. "/tmp/systemd-abcd.service-DEDBIF1".
https://bugzilla.redhat.com/show_bug.cgi?id=957439
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 73709793a5..d8670786ea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1105,6 +1105,7 @@ tests += \ test-utf8 \ test-ellipsize \ test-util \ + test-namespace \ test-date \ test-sleep \ test-replace-var \ @@ -1225,6 +1226,12 @@ test_util_SOURCES = \ test_util_LDADD = \ libsystemd-core.la +test_namespace_SOURCES = \ + src/test/test-namespace.c + +test_namespace_LDADD = \ + libsystemd-core.la + test_hashmap_SOURCES = \ src/test/test-hashmap.c |