wldap32/tests: Skip tests if the connection times out.

Hans Leidekker hans at codeweavers.com
Tue Apr 1 03:44:19 CDT 2014


---
 dlls/wldap32/tests/parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/wldap32/tests/parse.c b/dlls/wldap32/tests/parse.c
index 88a7e20..5c84929 100644
--- a/dlls/wldap32/tests/parse.c
+++ b/dlls/wldap32/tests/parse.c
@@ -48,7 +48,7 @@ static void test_ldap_parse_sort_control( LDAP *ld )
     timeout.tv_sec = 20;
     timeout.tv_usec = 0;
     ret = ldap_search_ext_sA( ld, (char *)"", LDAP_SCOPE_ONELEVEL, (char *)"(ou=*)", NULL, 0, ctrls, NULL, &timeout, 10, &res );
-    if (ret == LDAP_SERVER_DOWN)
+    if (ret == LDAP_SERVER_DOWN || ret == LDAP_TIMEOUT)
     {
         skip("test server can't be reached\n");
         ldap_control_freeA( sort );
-- 
1.9.1





More information about the wine-patches mailing list