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
ee24a372
Commit
ee24a372
authored
Jul 01, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Fix a few failing tests in win2k.
parent
d932fefb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+9
-3
No files found.
dlls/rpcrt4/tests/ndr_marshall.c
View file @
ee24a372
...
...
@@ -1161,7 +1161,9 @@ static void test_client_init(void)
ok
(
stubMsg
.
IsClient
==
1
,
"stubMsg.IsClient should have been 1 instead of %u
\n
"
,
stubMsg
.
IsClient
);
TEST_ZERO
(
ReuseBuffer
,
"%d"
);
TEST_ZERO
(
pAllocAllNodesContext
,
"%p"
);
TEST_ZERO
(
pPointerQueueState
,
"%p"
);
ok
(
stubMsg
.
pPointerQueueState
==
0
||
broken
(
stubMsg
.
pPointerQueueState
==
(
void
*
)
0xcccccccc
),
/* win2k */
"stubMsg.pPointerQueueState should have been unset instead of %p
\n
"
,
stubMsg
.
pPointerQueueState
);
TEST_ZERO
(
IgnoreEmbeddedPointers
,
"%d"
);
TEST_ZERO
(
PointerBufferMark
,
"%p"
);
TEST_ZERO
(
CorrDespIncrement
,
"%d"
);
...
...
@@ -1260,9 +1262,13 @@ todo_wine
TEST_ULONG_UNSET
(
MemorySize
);
TEST_POINTER_UNSET
(
Memory
);
ok
(
stubMsg
.
IsClient
==
0
,
"stubMsg.IsClient should have been 0 instead of %u
\n
"
,
stubMsg
.
IsClient
);
TEST_ZERO
(
ReuseBuffer
,
"%d"
);
ok
(
stubMsg
.
ReuseBuffer
==
0
||
broken
(
stubMsg
.
ReuseBuffer
==
1
),
/* win2k */
"stubMsg.ReuseBuffer should have been set to zero instead of %d
\n
"
,
stubMsg
.
ReuseBuffer
);
TEST_ZERO
(
pAllocAllNodesContext
,
"%p"
);
TEST_ZERO
(
pPointerQueueState
,
"%p"
);
ok
(
stubMsg
.
pPointerQueueState
==
0
||
broken
(
stubMsg
.
pPointerQueueState
==
(
void
*
)
0xcccccccc
),
/* win2k */
"stubMsg.pPointerQueueState should have been unset instead of %p
\n
"
,
stubMsg
.
pPointerQueueState
);
TEST_ZERO
(
IgnoreEmbeddedPointers
,
"%d"
);
TEST_ZERO
(
PointerBufferMark
,
"%p"
);
ok
(
stubMsg
.
CorrDespIncrement
==
0xcc
,
"CorrDespIncrement should have been unset instead of 0x%x
\n
"
,
stubMsg
.
CorrDespIncrement
);
...
...
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