Browse Source

Merge branch 'master' of ssh://git.kea.isc.org/git/kea

Tomek Mrugalski 8 years ago
parent
commit
b860eba5ab
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/bin/agent/tests/ca_command_mgr_unittests.cc

+ 3 - 3
src/bin/agent/tests/ca_command_mgr_unittests.cc

@@ -270,19 +270,19 @@ TEST_F(CtrlAgentCommandMgrTest, listCommands) {
 };
 
 /// Check that control command is successfully forwarded to the DHCPv4 server.
-TEST_F(CtrlAgentCommandMgrTest, forwardToDHCPv4Server) {
+TEST_F(CtrlAgentCommandMgrTest, DISABLED_forwardToDHCPv4Server) {
     testForward(CtrlAgentCfgContext::TYPE_DHCP4, "dhcp4",
                 isc::config::CONTROL_RESULT_SUCCESS);
 }
 
 /// Check that control command is successfully forwarded to the DHCPv6 server.
-TEST_F(CtrlAgentCommandMgrTest, forwardToDHCPv6Server) {
+TEST_F(CtrlAgentCommandMgrTest, DISABLED_forwardToDHCPv6Server) {
     testForward(CtrlAgentCfgContext::TYPE_DHCP6, "dhcp6",
                 isc::config::CONTROL_RESULT_SUCCESS);
 }
 
 /// Check that the same command is forwarded to multiple servers.
-TEST_F(CtrlAgentCommandMgrTest, forwardToBothDHCPServers) {
+TEST_F(CtrlAgentCommandMgrTest, DISABLED_forwardToBothDHCPServers) {
     configureControlSocket(CtrlAgentCfgContext::TYPE_DHCP6);
 
     testForward(CtrlAgentCfgContext::TYPE_DHCP4, "dhcp4,dhcp6",