diff options
author | Patrik Flykt <patrik.flykt@linux.intel.com> | 2014-06-19 15:38:59 +0300 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2014-06-19 15:44:43 +0300 |
commit | f20a35cc0d537dd4cfc1054cf7936b04a1700f3a (patch) | |
tree | 3ea4daa031db6bd1951268f3d27a6882887b44d2 /Makefile.am | |
parent | e3169126793f43be3d840874ffb3935a51097001 (diff) |
sd-icmp6-nd: Add initial Router Advertisement test case
Feed a Router Advertisement to the code and expect proper events
each time. The sending part is ignored, as all of it is static code
in the real dhcp_network_icmp6_send_rs() function.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 35190e5c0c..71c16cbebb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2651,11 +2651,23 @@ test_ipv4ll_LDADD = \ libsystemd-internal.la \ libsystemd-shared.la +test_icmp6_rs_SOURCES = \ + src/systemd/sd-dhcp6-client.h \ + src/libsystemd-network/sd-icmp6-nd.h \ + src/libsystemd-network/dhcp6-internal.h \ + src/libsystemd-network/test-icmp6-rs.c + +test_icmp6_rs_LDADD = \ + libsystemd-network.la \ + libsystemd-internal.la \ + libsystemd-shared.la + tests += \ test-dhcp-option \ test-dhcp-client \ test-dhcp-server \ - test-ipv4ll + test-ipv4ll \ + test-icmp6-rs # ------------------------------------------------------------------------------ if ENABLE_GTK_DOC |