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: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Huw Davies 2016-09-01 17:08:00 +01:00 committed by Alexandre Julliard
parent 907854d4a2
commit 76ddf58c44
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}