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
8554db9f
Commit
8554db9f
authored
Feb 08, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Feb 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Skip rest of the tests if we fail.
parent
a9e29c75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
rpc.c
dlls/rpcrt4/tests/rpc.c
+6
-0
No files found.
dlls/rpcrt4/tests/rpc.c
View file @
8554db9f
...
...
@@ -325,6 +325,12 @@ static void test_towers(void)
ret
=
TowerConstruct
(
&
mapi_if_id
,
&
ndr_syntax
,
"ncacn_ip_tcp"
,
"135"
,
"10.0.0.1"
,
&
tower
);
ok
(
ret
==
RPC_S_OK
,
"TowerConstruct failed with error %ld
\n
"
,
ret
);
if
(
ret
==
RPC_S_INVALID_RPC_PROTSEQ
)
{
/* Windows Vista fails with this error and crashes if we continue */
skip
(
"TowerConstruct failed, we are most likely on Windows Vista
\n
"
);
return
;
}
/* first check we have the right amount of data */
ok
(
tower
->
tower_length
==
sizeof
(
tower_data_tcp_ip1
)
||
...
...
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