From 76ddf58c44bc4fd1ed7b0c9cd0a8470042c1713f Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Thu, 1 Sep 2016 17:08:00 +0100 Subject: [PATCH] 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 Signed-off-by: Alexandre Julliard --- dlls/rpcrt4/tests/rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c index 23b9e3601e6..3f6cf91ff61 100644 --- a/dlls/rpcrt4/tests/rpc.c +++ b/dlls/rpcrt4/tests/rpc.c @@ -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)); }