]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#433] Added an explanation why a test could fail and how to fix it.
authorTomek Mrugalski <tomasz@isc.org>
Tue, 13 Aug 2019 21:37:17 +0000 (14:37 -0700)
committerTomek Mrugalski <tomek@isc.org>
Tue, 13 Aug 2019 21:43:06 +0000 (17:43 -0400)
src/lib/yang/tests/config_unittests.cc

index 7910650bbb98a3a9db4e7e01087a029173077b91..57a2c0d1eebfc4416abb63838c42f903b729ee83 100644 (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());
 }