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
371afffd
Commit
371afffd
authored
Mar 12, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add a few skips instead of just returning.
parent
a558bfad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
locale.c
dlls/kernel32/tests/locale.c
+6
-0
No files found.
dlls/kernel32/tests/locale.c
View file @
371afffd
...
...
@@ -1796,7 +1796,10 @@ static void test_FoldStringW(void)
};
if
(
!
pFoldStringW
)
{
skip
(
"FoldStringW is not available
\n
"
);
return
;
/* FoldString is present in NT v3.1+, but not 95/98/Me */
}
/* Invalid flag combinations */
for
(
i
=
0
;
i
<
sizeof
(
badFlags
)
/
sizeof
(
badFlags
[
0
]);
i
++
)
...
...
@@ -1805,7 +1808,10 @@ static void test_FoldStringW(void)
SetLastError
(
0
);
ret
=
pFoldStringW
(
badFlags
[
i
],
src
,
256
,
dst
,
256
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"FoldStringW is not implemented
\n
"
);
return
;
}
EXPECT_LEN
(
0
);
EXPECT_FLAGS
;
}
...
...
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