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
9ee160cf
Commit
9ee160cf
authored
Sep 10, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Sep 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Fix some failures on XP-SP3.
parent
58ddb6f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+18
-6
No files found.
dlls/rpcrt4/tests/ndr_marshall.c
View file @
9ee160cf
...
...
@@ -1191,11 +1191,17 @@ static void test_client_init(void)
TEST_ZERO
(
fHasExtensions
,
"%d"
);
TEST_ZERO
(
fHasNewCorrDesc
,
"%d"
);
TEST_ZERO
(
fIsIn
,
"%d"
);
TEST_ZERO
(
fIsOut
,
"%d"
);
ok
(
stubMsg
.
fIsOut
==
0
||
stubMsg
.
fIsOut
==
-
1
,
/* XP-SP3 */
"fIsOut should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fIsOut
);
TEST_ZERO
(
fIsOicf
,
"%d"
);
TEST_ZERO
(
fBufferValid
,
"%d"
);
TEST_ZERO
(
fHasMemoryValidateCallback
,
"%d"
);
TEST_ZERO
(
fInFree
,
"%d"
);
ok
(
stubMsg
.
fHasMemoryValidateCallback
==
0
||
stubMsg
.
fHasMemoryValidateCallback
==
-
1
,
/* XP-SP3 */
"fHasMemoryValidateCallback should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fHasMemoryValidateCallback
);
ok
(
stubMsg
.
fInFree
==
0
||
stubMsg
.
fInFree
==
-
1
,
/* XP-SP3 */
"fInFree should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fInFree
);
TEST_ZERO
(
fNeedMCCP
,
"%d"
);
ok
(
stubMsg
.
fUnused
==
0
||
stubMsg
.
fUnused
==
-
2
,
/* Vista */
...
...
@@ -1302,11 +1308,17 @@ todo_wine
TEST_ZERO
(
fHasExtensions
,
"%d"
);
TEST_ZERO
(
fHasNewCorrDesc
,
"%d"
);
TEST_ZERO
(
fIsIn
,
"%d"
);
TEST_ZERO
(
fIsOut
,
"%d"
);
ok
(
stubMsg
.
fIsOut
==
0
||
stubMsg
.
fIsOut
==
-
1
,
/* XP-SP3 */
"fIsOut should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fIsOut
);
TEST_ZERO
(
fIsOicf
,
"%d"
);
trace
(
"fBufferValid = %d
\n
"
,
stubMsg
.
fBufferValid
);
TEST_ZERO
(
fHasMemoryValidateCallback
,
"%d"
);
TEST_ZERO
(
fInFree
,
"%d"
);
ok
(
stubMsg
.
fHasMemoryValidateCallback
==
0
||
stubMsg
.
fHasMemoryValidateCallback
==
-
1
,
/* XP-SP3 */
"fHasMemoryValidateCallback should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fHasMemoryValidateCallback
);
ok
(
stubMsg
.
fInFree
==
0
||
stubMsg
.
fInFree
==
-
1
,
/* XP-SP3 */
"fInFree should have been set to 0 or -1 instead of %d
\n
"
,
stubMsg
.
fInFree
);
TEST_ZERO
(
fNeedMCCP
,
"%d"
);
ok
(
stubMsg
.
fUnused
==
0
||
stubMsg
.
fUnused
==
-
2
,
/* Vista */
...
...
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