Commit d9145df0 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

winmm: Use skip() instead of trace() when skipping tests.

parent 17096364
......@@ -59,7 +59,7 @@ static void test_mmioDescend(char *fname)
hmmio = mmioOpen(fname, &mmio, MMIO_READ);
if (fname && !hmmio)
{
trace("%s file is missing, skipping the test\n", fname);
skip("%s file is missing, skipping the test\n", fname);
return;
}
ok(hmmio != 0, "mmioOpen error %u\n", mmio.wErrorRet);
......@@ -211,7 +211,7 @@ static void test_mmioOpen(char *fname)
hmmio = mmioOpen(fname, &mmio, MMIO_READ);
if (fname && !hmmio)
{
trace("%s file is missing, skipping the test\n", fname);
skip("%s file is missing, skipping the test\n", fname);
return;
}
ok(hmmio != 0, "mmioOpen error %u\n", mmio.wErrorRet);
......@@ -374,7 +374,7 @@ static void test_mmioSetBuffer(char *fname)
hmmio = mmioOpen(fname, &mmio, MMIO_READ);
if (fname && !hmmio)
{
trace("%s file is missing, skipping the test\n", fname);
skip("%s file is missing, skipping the test\n", fname);
return;
}
ok(hmmio != 0, "mmioOpen error %u\n", mmio.wErrorRet);
......
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