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
490443ed
Commit
490443ed
authored
Jul 07, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Fix a test that fails in win2k3.
parent
363516d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+3
-1
No files found.
dlls/rpcrt4/tests/ndr_marshall.c
View file @
490443ed
...
...
@@ -1848,7 +1848,9 @@ static void test_ndr_buffer(void)
ok
(
ret
==
StubMsg
.
Buffer
,
"NdrGetBuffer should have returned the same value as StubMsg.Buffer instead of %p
\n
"
,
ret
);
ok
(
RpcMessage
.
Handle
!=
NULL
,
"RpcMessage.Handle should not have been NULL
\n
"
);
ok
(
RpcMessage
.
Buffer
!=
NULL
,
"RpcMessage.Buffer should not have been NULL
\n
"
);
ok
(
RpcMessage
.
BufferLength
==
10
,
"RpcMessage.BufferLength should have been 10 instead of %d
\n
"
,
RpcMessage
.
BufferLength
);
ok
(
RpcMessage
.
BufferLength
==
10
||
broken
(
RpcMessage
.
BufferLength
==
12
),
/* win2k */
"RpcMessage.BufferLength should have been 10 instead of %d
\n
"
,
RpcMessage
.
BufferLength
);
ok
(
RpcMessage
.
RpcFlags
==
0
,
"RpcMessage.RpcFlags should have been 0x0 instead of 0x%lx
\n
"
,
RpcMessage
.
RpcFlags
);
ok
(
StubMsg
.
Buffer
!=
NULL
,
"Buffer should not have been NULL
\n
"
);
ok
(
!
StubMsg
.
BufferStart
,
"BufferStart should have been NULL instead of %p
\n
"
,
StubMsg
.
BufferStart
);
...
...
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