diff options
author | Susant Sahani <susant@redhat.com> | 2014-03-25 14:13:30 +0530 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-03-25 14:44:33 +0100 |
commit | 9a6704a81fb5431f7b32dea267a837b1c2b86801 (patch) | |
tree | 464e289c1c713d0764f4602c2452351578b13ded /Makefile.am | |
parent | 41ca2c206bb70168f662200784ded59d1af22044 (diff) |
sd-rtnl: add support for tunnel attributes
Added support for tunneling netlink attrributes (ipip, gre, sit).
These works with kernel module ipip, gre and sit . The test cases are
moved to a separate file and manual test as well because they require
respective kernel modules as well.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2cb0f2aea2..27c76858aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1175,7 +1175,8 @@ manual_tests += \ test-install \ test-watchdog \ test-log \ - test-ipcrm + test-ipcrm \ + test-rtnl-manual tests += \ test-job-type \ @@ -1398,6 +1399,14 @@ test_ipcrm_LDADD = \ libsystemd-shared.la \ -lrt +test_rtnl_manual_SOURCES = \ + src/test/test-rtnl-manual.c + +test_rtnl_manual_LDADD = \ + libsystemd-internal.la \ + libsystemd-shared.la \ + -lkmod + test_ellipsize_SOURCES = \ src/test/test-ellipsize.c |