Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7a0c8434
Commit
7a0c8434
authored
Jan 16, 2017
by
Huw Davies
Committed by
Alexandre Julliard
Jan 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32/tests: Fix test failures on Windows 10.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d7951abc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
schannel.c
dlls/secur32/tests/schannel.c
+4
-2
No files found.
dlls/secur32/tests/schannel.c
View file @
7a0c8434
...
@@ -819,7 +819,8 @@ todo_wine
...
@@ -819,7 +819,8 @@ todo_wine
status
=
InitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
status
=
InitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
ok
(
status
==
SEC_E_INCOMPLETE_MESSAGE
,
"Got unexpected status %#x.
\n
"
,
status
);
ok
(
status
==
SEC_E_INCOMPLETE_MESSAGE
||
status
==
SEC_E_INVALID_TOKEN
,
"Got unexpected status %#x.
\n
"
,
status
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
buf_size
,
"Output buffer size changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
buf_size
,
"Output buffer size changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
BufferType
==
SECBUFFER_TOKEN
,
"Output buffer type changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
BufferType
==
SECBUFFER_TOKEN
,
"Output buffer type changed.
\n
"
);
...
@@ -827,7 +828,8 @@ todo_wine
...
@@ -827,7 +828,8 @@ todo_wine
status
=
InitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
status
=
InitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
ok
(
status
==
SEC_E_INCOMPLETE_MESSAGE
,
"Got unexpected status %#x.
\n
"
,
status
);
ok
(
status
==
SEC_E_INCOMPLETE_MESSAGE
||
status
==
SEC_E_INVALID_TOKEN
,
"Got unexpected status %#x.
\n
"
,
status
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
buf_size
,
"Output buffer size changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
buf_size
,
"Output buffer size changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
BufferType
==
SECBUFFER_TOKEN
,
"Output buffer type changed.
\n
"
);
ok
(
buffers
[
0
].
pBuffers
[
0
].
BufferType
==
SECBUFFER_TOKEN
,
"Output buffer type changed.
\n
"
);
...
...
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