diff options
author | David Strauss <david@davidstrauss.net> | 2013-11-11 19:03:31 +1000 |
---|---|---|
committer | David Strauss <david@davidstrauss.net> | 2013-11-22 11:22:47 +1000 |
commit | 6414b7c981378a6eef480f6806d7cbfc98ca22a1 (patch) | |
tree | 52e636340ce65e8e5d69ad7e8dd8b4f2ec310e72 /Makefile.am | |
parent | 52c7f2b2d58394c791ea0c6cf706082fd418f5bc (diff) |
cgroups: Cache controller masks and optimize queues.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index f7fe96c35c..fa215e8e09 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1120,6 +1120,7 @@ tests += \ test-calendarspec \ test-strip-tab-ansi \ test-cgroup-util \ + test-cgroup-mask \ test-prioq \ test-fileio \ test-time \ @@ -1315,6 +1316,18 @@ test_cgroup_LDADD = \ libsystemd-label.la \ libsystemd-shared.la +test_cgroup_mask_SOURCES = \ + src/test/test-cgroup-mask.c + +test_cgroup_mask_CFLAGS = \ + $(AM_CFLAGS) \ + $(DBUS_CFLAGS) \ + -D"STR(s)=\#s" -D"TEST_DIR=STR($(abs_top_srcdir)/test/)" + +test_cgroup_mask_LDADD = \ + libsystemd-core.la \ + $(RT_LIBS) + test_cgroup_util_SOURCES = \ src/test/test-cgroup-util.c |