Commit f21e2624 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wldap32/tests: Skip paged search tests when the server can't be reached.

parent 02e70fcb
...@@ -242,6 +242,12 @@ static void test_ldap_paged_search(void) ...@@ -242,6 +242,12 @@ static void test_ldap_paged_search(void)
count = 0xdeadbeef; count = 0xdeadbeef;
res = NULL; res = NULL;
ret = ldap_get_next_page_s( ld, search, NULL, 1, &count, &res ); ret = ldap_get_next_page_s( ld, search, NULL, 1, &count, &res );
if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE)
{
skip( "test server can't be reached\n" );
ldap_unbind( ld );
return;
}
ok( !ret, "ldap_get_next_page_s failed %#lx\n", ret ); ok( !ret, "ldap_get_next_page_s failed %#lx\n", ret );
ok( res != NULL, "expected res != NULL\n" ); ok( res != NULL, "expected res != NULL\n" );
ok( count == 0, "got %lu\n", count ); ok( count == 0, "got %lu\n", count );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment