Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
92e12bb8
Commit
92e12bb8
authored
Apr 21, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Use win_skip when function is not exported.
parent
49e503c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
string.c
dlls/msvcrt/tests/string.c
+5
-5
No files found.
dlls/msvcrt/tests/string.c
View file @
92e12bb8
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment