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
1eaa2569
Commit
1eaa2569
authored
Dec 06, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Dec 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32/tests: Fix tests on win8.
parent
30fd27e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
negotiate.c
dlls/secur32/tests/negotiate.c
+6
-2
No files found.
dlls/secur32/tests/negotiate.c
View file @
1eaa2569
...
...
@@ -329,7 +329,9 @@ static void test_authentication(void)
{
ok
(
pi
->
fCapabilities
==
NTLM_BASE_CAPS
||
pi
->
fCapabilities
==
(
NTLM_BASE_CAPS
|
SECPKG_FLAG_READONLY_WITH_CHECKSUM
)
||
pi
->
fCapabilities
==
(
NTLM_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
),
pi
->
fCapabilities
==
(
NTLM_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
)
||
pi
->
fCapabilities
==
(
NTLM_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
|
SECPKG_FLAG_APPCONTAINER_CHECKS
),
"got %08x
\n
"
,
pi
->
fCapabilities
);
ok
(
pi
->
wVersion
==
1
,
"got %u
\n
"
,
pi
->
wVersion
);
ok
(
pi
->
wRPCID
==
RPC_C_AUTHN_WINNT
,
"got %u
\n
"
,
pi
->
wRPCID
);
...
...
@@ -372,7 +374,9 @@ START_TEST(negotiate)
}
ok
(
info
->
fCapabilities
==
NEGOTIATE_BASE_CAPS
||
info
->
fCapabilities
==
(
NEGOTIATE_BASE_CAPS
|
SECPKG_FLAG_READONLY_WITH_CHECKSUM
)
||
info
->
fCapabilities
==
(
NEGOTIATE_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
),
info
->
fCapabilities
==
(
NEGOTIATE_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
)
||
info
->
fCapabilities
==
(
NEGOTIATE_BASE_CAPS
|
SECPKG_FLAG_RESTRICTED_TOKENS
|
SECPKG_FLAG_APPCONTAINER_CHECKS
),
"got %08x
\n
"
,
info
->
fCapabilities
);
ok
(
info
->
wVersion
==
1
,
"got %u
\n
"
,
info
->
wVersion
);
ok
(
info
->
wRPCID
==
RPC_C_AUTHN_GSS_NEGOTIATE
,
"got %u
\n
"
,
info
->
wRPCID
);
...
...
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