Commit 8554db9f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

rpcrt4/tests: Skip rest of the tests if we fail.

parent a9e29c75
...@@ -325,6 +325,12 @@ static void test_towers(void) ...@@ -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); 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); 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 */ /* first check we have the right amount of data */
ok(tower->tower_length == sizeof(tower_data_tcp_ip1) || ok(tower->tower_length == sizeof(tower_data_tcp_ip1) ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment