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
da95db8d
Commit
da95db8d
authored
Sep 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Fix a couple of test failures on Windows.
parent
a5438963
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
rpc.c
dlls/rpcrt4/tests/rpc.c
+4
-1
No files found.
dlls/rpcrt4/tests/rpc.c
View file @
da95db8d
...
...
@@ -384,7 +384,9 @@ static void test_towers(void)
ok
(
ret
==
RPC_S_OK
,
"TowerConstruct failed with error %ld
\n
"
,
ret
);
ret
=
TowerExplode
(
tower
,
NULL
,
NULL
,
NULL
,
NULL
,
&
address
);
ok
(
ret
==
RPC_S_OK
,
"TowerExplode failed with error %ld
\n
"
,
ret
);
ok
(
!
strcmp
(
address
,
"0.0.0.0"
),
"address was
\"
%s
\"
instead of
\"
0.0.0.0
\"\n
"
,
address
);
ok
(
!
strcmp
(
address
,
"0.0.0.0"
)
||
broken
(
!
strcmp
(
address
,
"255.255.255.255"
)),
"address was
\"
%s
\"
instead of
\"
0.0.0.0
\"\n
"
,
address
);
I_RpcFree
(
address
);
I_RpcFree
(
tower
);
...
...
@@ -665,6 +667,7 @@ static void test_I_RpcExceptionFilter(void)
ok
(
retval
==
EXCEPTION_CONTINUE_SEARCH
,
"I_RpcExceptionFilter(0x%x) should have returned %d instead of %d
\n
"
,
exception
,
EXCEPTION_CONTINUE_SEARCH
,
retval
);
break
;
case
STATUS_GUARD_PAGE_VIOLATION
:
case
STATUS_IN_PAGE_ERROR
:
case
STATUS_HANDLE_NOT_CLOSABLE
:
trace
(
"I_RpcExceptionFilter(0x%x) returned %d
\n
"
,
exception
,
retval
);
...
...
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