Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6d901a17
Commit
6d901a17
authored
Oct 21, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Use a test query that is more likely to succeed within 20 seconds.
parent
822e4cba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
parse.c
dlls/wldap32/tests/parse.c
+3
-3
No files found.
dlls/wldap32/tests/parse.c
View file @
6d901a17
...
...
@@ -34,7 +34,7 @@ static void test_ldap_parse_sort_control( LDAP *ld )
LDAPMessage
*
res
=
NULL
;
struct
l_timeval
timeout
;
key
.
sk_attrtype
=
(
char
*
)
"
cn
"
;
key
.
sk_attrtype
=
(
char
*
)
"
ou
"
;
key
.
sk_matchruleoid
=
NULL
;
key
.
sk_reverseorder
=
FALSE
;
...
...
@@ -47,7 +47,7 @@ static void test_ldap_parse_sort_control( LDAP *ld )
ctrls
[
1
]
=
NULL
;
timeout
.
tv_sec
=
20
;
timeout
.
tv_usec
=
0
;
ret
=
ldap_search_ext_sA
(
ld
,
(
char
*
)
""
,
LDAP_SCOPE_
SUBTREE
,
(
char
*
)
"(cn=Verisign
*)"
,
NULL
,
0
,
ctrls
,
NULL
,
&
timeout
,
10
,
&
res
);
ret
=
ldap_search_ext_sA
(
ld
,
(
char
*
)
""
,
LDAP_SCOPE_
ONELEVEL
,
(
char
*
)
"(ou=
*)"
,
NULL
,
0
,
ctrls
,
NULL
,
&
timeout
,
10
,
&
res
);
ok
(
!
ret
,
"ldap_search_ext_sA failed 0x%x
\n
"
,
ret
);
if
(
ret
)
{
...
...
@@ -84,7 +84,7 @@ START_TEST (parse)
{
LDAP
*
ld
;
ld
=
ldap_initA
((
char
*
)
"
directory.verisign.com
"
,
389
);
ld
=
ldap_initA
((
char
*
)
"
ldap.itd.umich.edu
"
,
389
);
ok
(
ld
!=
NULL
,
"ldap_init failed
\n
"
);
test_ldap_parse_sort_control
(
ld
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment