From: Francois Gouget fgouget@codeweavers.com
--- dlls/msvcrt/tests/environ.c | 4 ++-- dlls/msvcrt/tests/time.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/msvcrt/tests/environ.c b/dlls/msvcrt/tests/environ.c index 3d6b55dffa8..29f50ccb4f6 100644 --- a/dlls/msvcrt/tests/environ.c +++ b/dlls/msvcrt/tests/environ.c @@ -102,7 +102,7 @@ static void test__environ(void) "Expected _environ pointers to be identical\n" ); } else - skip( "__p__environ() is not available\n" ); + win_skip( "__p__environ() is not available\n" );
if (p_get_environ) { @@ -165,7 +165,7 @@ static void test__wenviron(void) "Expected _wenviron pointers to be NULL\n" ); } else - skip( "__p__wenviron() is not available\n" ); + win_skip( "__p__wenviron() is not available\n" );
if (p_get_wenviron) { diff --git a/dlls/msvcrt/tests/time.c b/dlls/msvcrt/tests/time.c index d4e0ac40239..0146e6c744b 100644 --- a/dlls/msvcrt/tests/time.c +++ b/dlls/msvcrt/tests/time.c @@ -592,7 +592,7 @@ static void test_daylight(void)
if (!p___p__daylight) { - skip("__p__daylight not available\n"); + win_skip("__p__daylight not available\n"); return; }
@@ -908,7 +908,7 @@ static void test__tzset(void) int ret;
if(!p___p__daylight || !p___p__timezone || !p___p__dstbias) { - skip("__p__daylight, __p__timezone or __p__dstbias is not available\n"); + win_skip("__p__daylight, __p__timezone or __p__dstbias is not available\n"); return; }