summaryrefslogtreecommitdiffstats
path: root/src/tests/fail_over-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/fail_over-tests.c')
-rw-r--r--src/tests/fail_over-tests.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/tests/fail_over-tests.c b/src/tests/fail_over-tests.c
index 8d6bdd3d..6f4843ca 100644
--- a/src/tests/fail_over-tests.c
+++ b/src/tests/fail_over-tests.c
@@ -230,14 +230,15 @@ START_TEST(test_fo_resolve_service)
fail_if(fo_new_service(ctx->fo_ctx, "ntp", &service[2]) != EOK);
/* Add servers. */
- fail_if(fo_add_server(service[0], "localhost", 20, NULL) != EOK);
- fail_if(fo_add_server(service[0], "127.0.0.1", 80, NULL) != EOK);
+ fail_if(fo_add_server(service[0], "localhost", 20, NULL, true) != EOK);
+ fail_if(fo_add_server(service[0], "127.0.0.1", 80, NULL, false) != EOK);
- fail_if(fo_add_server(service[1], "localhost", 30, NULL) != EOK);
- fail_if(fo_add_server(service[1], "127.0.0.1", 389, NULL) != EOK);
- fail_if(fo_add_server(service[1], "127.0.0.1", 389, NULL) != EEXIST);
+ fail_if(fo_add_server(service[1], "localhost", 30, NULL, false) != EOK);
+ fail_if(fo_add_server(service[1], "127.0.0.1", 389, NULL, true) != EOK);
+ fail_if(fo_add_server(service[1], "127.0.0.1", 389, NULL, true) != EEXIST);
+ fail_if(fo_add_server(service[1], "127.0.0.1", 389, NULL, false) != EEXIST);
- fail_if(fo_add_server(service[2], NULL, 123, NULL) != EOK);
+ fail_if(fo_add_server(service[2], NULL, 123, NULL, true) != EOK);
/* Make requests. */
get_request(ctx, service[0], EOK, 20, PORT_WORKING, -1);