2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[#433] Added an explanation why a test could fail and how to fix it.

This commit is contained in:
Tomek Mrugalski
2019-08-13 14:37:17 -07:00
committed by Tomek Mrugalski
parent c2edd80284
commit c46e8da156

View File

@@ -318,6 +318,12 @@ TEST_F(ConfigTest, validateIetf6) {
ASSERT_NO_THROW(load(validTreeIetf6));
EXPECT_TRUE(verify(validTreeIetf6));
// If this validation fails, make sure you have the model *and its
// dependencies* are installed. Note when you install ietf-dhcpv6-server
// module, its dependencies are semi-installed, which is not sufficient.
// This can be detected in output of sysrepoctl -l.
// Note the ietf-interfaces module. The conformance status must be
// "installed". "implemented" (installed as dependency) is not enough.
EXPECT_TRUE(validate());
}