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
cf8cf1d7
Commit
cf8cf1d7
authored
Aug 22, 2007
by
Mikolaj Zalewski
Committed by
Alexandre Julliard
Aug 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't test codepage 20932.
parent
c5268a20
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
mbcs.c
dlls/msvcrt/mbcs.c
+1
-1
string.c
dlls/msvcrt/tests/string.c
+0
-4
No files found.
dlls/msvcrt/mbcs.c
View file @
cf8cf1d7
...
...
@@ -50,7 +50,7 @@ static struct cp_extra_info_t g_cpextrainfo[] =
{
936
,
{
0x40
,
0xfe
,
0
,
0
}},
{
949
,
{
0x41
,
0xfe
,
0
,
0
}},
{
950
,
{
0x40
,
0x7e
,
0xa1
,
0xfe
,
0
,
0
}},
{
20932
,
{
1
,
255
,
0
,
0
}},
{
20932
,
{
1
,
255
,
0
,
0
}},
/* seems to give different results on different systems */
{
0
,
{
1
,
255
,
0
,
0
}}
/* match all with FIXME */
};
...
...
dlls/msvcrt/tests/string.c
View file @
cf8cf1d7
...
...
@@ -143,12 +143,9 @@ static int result_cp_949_mbctype[] = { 0x0,66, 0x18,26, 0x8,6, 0x28,26, 0x8,6, 0
0
,
1
};
static
int
result_cp_950_mbctype
[]
=
{
0x0
,
65
,
0x8
,
1
,
0x18
,
26
,
0x8
,
6
,
0x28
,
26
,
0x8
,
4
,
0x0
,
2
,
0x4
,
32
,
0xc
,
94
,
0
,
1
};
static
int
result_cp_20932_mbctype
[]
=
{
0x0
,
2
,
0x8
,
64
,
0x18
,
26
,
0x8
,
6
,
0x28
,
26
,
0x8
,
19
,
0xc
,
1
,
0x8
,
18
,
0xc
,
94
,
0
,
1
};
static
int
todo_none
[]
=
{
-
2
};
static
int
todo_cp_932
[]
=
{
254
,
-
2
};
static
int
todo_cp_20932
[]
=
{
143
,
-
2
};
void
test_cp_table
(
int
cp
,
int
*
result
,
int
*
todo
)
{
...
...
@@ -197,7 +194,6 @@ static void test_mbcp(void)
test_codepage
(
936
);
test_codepage
(
949
);
test_codepage
(
950
);
test_codepage_todo
(
20932
,
todo_cp_20932
);
_setmbcp
(
936
);
ok
(
__mb_cur_max
==
mb_orig_max
,
"__mb_cur_max shouldn't be updated (is %d != %d)
\n
"
,
__mb_cur_max
,
mb_orig_max
);
...
...
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