mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
rpcrt4/tests: Skip rest of the tests if we fail.
This commit is contained in:
parent
a9e29c7576
commit
8554db9f5c
@ -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) ||
|
||||
|
Loading…
Reference in New Issue
Block a user