Commit 138f1197 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

rpcrt4/tests: Trace the GUID when it is wrong.

parent c2a5b04d
......@@ -814,6 +814,7 @@ static void test_UuidCreateSequential(void)
if (version == 1)
{
UUID guid2;
char buf[39];
if (!ret)
{
......@@ -821,7 +822,8 @@ static void test_UuidCreateSequential(void)
* address in the uuid:
*/
ok(!(guid1.Data4[2] & 0x01),
"GUID does not appear to contain a MAC address\n");
"GUID does not appear to contain a MAC address: %s\n",
printGuid(buf, sizeof(buf), &guid1));
}
else
{
......@@ -829,7 +831,8 @@ static void test_UuidCreateSequential(void)
* address in the uuid:
*/
ok((guid1.Data4[2] & 0x01),
"GUID does not appear to contain a multicast MAC address\n");
"GUID does not appear to contain a multicast MAC address: %s\n",
printGuid(buf, sizeof(buf), &guid1));
}
/* Generate another GUID, and make sure its MAC address matches the
* first.
......@@ -840,7 +843,8 @@ static void test_UuidCreateSequential(void)
version = (guid2.Data3 & 0xf000) >> 12;
ok(version == 1, "unexpected version %d\n", version);
ok(!memcmp(guid1.Data4, guid2.Data4, sizeof(guid2.Data4)),
"unexpected value in MAC address\n");
"unexpected value in MAC address: %s\n",
printGuid(buf, sizeof(buf), &guid2));
}
}
......
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