msvcrt: Use win_skip when function is not exported.

This commit is contained in:
Piotr Caban 2014-04-21 13:08:31 +02:00 committed by Alexandre Julliard
parent 49e503c55a
commit 92e12bb8fb
1 changed files with 5 additions and 5 deletions

View File

@ -492,7 +492,7 @@ static void test_strcpy_s(void)
if(!pstrcpy_s)
{
skip("strcpy_s not found\n");
win_skip("strcpy_s not found\n");
return;
}
@ -553,7 +553,7 @@ static void test_memcpy_s(void)
static const char big[] = {'a','t','o','o','l','o','n','g','s','t','r','i','n','g',0};
int ret;
if (!p_memcpy_s) {
skip("memcpy_s not found\n");
win_skip("memcpy_s not found\n");
return;
}
@ -609,7 +609,7 @@ static void test_memmove_s(void)
static const char big[] = {'a','t','o','o','l','o','n','g','s','t','r','i','n','g',0};
int ret;
if (!p_memmove_s) {
skip("memmove_s not found\n");
win_skip("memmove_s not found\n");
return;
}
@ -672,7 +672,7 @@ static void test_strcat_s(void)
if(!pstrcat_s)
{
skip("strcat_s not found\n");
win_skip("strcat_s not found\n");
return;
}
@ -736,7 +736,7 @@ static void test__mbsnbcpy_s(void)
if(!p_mbsnbcpy_s)
{
skip("_mbsnbcpy_s not found\n");
win_skip("_mbsnbcpy_s not found\n");
return;
}