Commit 76ddf58c authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

rpcrt4/tests: Mark Win 8.1 behaviour of UuidCreateSequential() as broken.

Some versions of Win 8.1 provide a randomised node ID (with the multicast bit set) but return S_OK instead of RPC_S_UUID_LOCAL_ONLY. This is despite having access to a valid MAC address. Signed-off-by: 's avatarHuw Davies <huw@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 907854d4
......@@ -809,7 +809,7 @@ static void test_UuidCreateSequential(void)
/* If the call succeeded, there's a valid (non-multicast) MAC
* address in the uuid:
*/
ok(!(guid1.Data4[2] & 0x01),
ok(!(guid1.Data4[2] & 0x01) || broken(guid1.Data4[2] & 0x01), /* Win 8.1 */
"GUID does not appear to contain a MAC address: %s\n",
wine_dbgstr_guid(&guid1));
}
......
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