1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-25 19:51:34 +01:00

Fixed some bugs. Added a better dependency system for Makefiles.

This commit is contained in:
Matias Fontanini
2012-08-13 00:29:38 -03:00
parent 87e9c4051e
commit e2223bf406
20 changed files with 1530 additions and 159 deletions

View File

@@ -99,6 +99,9 @@ TEST_F(DNSTest, NestedCopy) {
dns1.inner_pdu(nested);
DNS dns2(dns1);
test_equals(dns1, dns2);
dns2.inner_pdu(0);
dns2 = dns1;
test_equals(dns1, dns2);
}
TEST_F(DNSTest, ID) {