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
5b0c3266
Commit
5b0c3266
authored
Jun 10, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Limit the number of failures in the ligatures test.
parent
88d3994d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
locale.c
dlls/kernel32/tests/locale.c
+13
-4
No files found.
dlls/kernel32/tests/locale.c
View file @
5b0c3266
...
...
@@ -1954,7 +1954,7 @@ static void test_FoldStringW(void)
EXPECT_LEN
(
sizeof
(
ligatures_dst
)
/
sizeof
(
ligatures_dst
[
0
]));
EXPECT_VALID
;
ok
(
!
memcmp
(
dst
,
ligatures_dst
,
sizeof
(
ligatures_dst
)),
"MAP_EXPAND_LIGATURES: Expanded incorrectly
\n
"
);
for
(
i
=
1
;
i
<=
0xffff
;
i
++
)
for
(
i
=
1
,
failures
=
0
;
i
<=
0xffff
;
i
++
)
{
if
(
!
strchrW
(
ligatures_src
,
i
))
{
...
...
@@ -1963,9 +1963,18 @@ static void test_FoldStringW(void)
SetLastError
(
0
);
ret
=
pFoldStringW
(
MAP_EXPAND_LIGATURES
,
src
,
-
1
,
dst
,
256
);
EXPECT_LEN
(
2
);
EXPECT_VALID
;
ok
(
dst
[
0
]
==
src
[
0
],
"MAP_EXPAND_LIGATURES: 0x%02x : Expected 0x%02x, got 0x%02x
\n
"
,
i
,
src
[
0
],
dst
[
0
]);
if
(
ret
==
3
)
ok
(
0
,
"MAP_EXPAND_LIGATURES: %04x : Expected %04x, got %04x %04x
\n
"
,
i
,
src
[
0
],
dst
[
0
],
dst
[
1
]);
else
ok
(
dst
[
0
]
==
src
[
0
],
"MAP_EXPAND_LIGATURES: %04x : Expected %04x, got %04x
\n
"
,
i
,
src
[
0
],
dst
[
0
]);
if
(
dst
[
0
]
!=
src
[
0
]
&&
++
failures
>
50
)
{
trace
(
"MAP_EXPAND_LIGATURES: Too many failures, giving up
\n
"
);
break
;
}
}
}
}
...
...
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