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