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

Alexandre Julliard julliard at winehq.org
Tue Oct 14 08:30:16 CDT 2008


Module: wine
Branch: master
Commit: d9145df0da7f01a667c7980eecb0cfc0ef11b005
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d9145df0da7f01a667c7980eecb0cfc0ef11b005

Author: Kai Blin <kai.blin at gmail.com>
Date:   Tue Oct 14 10:13:39 2008 +0200

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

---

 dlls/winmm/tests/mmio.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/winmm/tests/mmio.c b/dlls/winmm/tests/mmio.c
index f07ab8d..79ae031 100644
--- a/dlls/winmm/tests/mmio.c
+++ b/dlls/winmm/tests/mmio.c
@@ -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);




More information about the wine-cvs mailing list