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
98435dc7
Commit
98435dc7
authored
May 26, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang/tests: Rfc1766ToLcid must not touch the LCID output on failure.
parent
f4def21f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
18 deletions
+5
-18
mlang.c
dlls/mlang/mlang.c
+0
-2
mlang.c
dlls/mlang/tests/mlang.c
+5
-16
No files found.
dlls/mlang/mlang.c
View file @
98435dc7
...
...
@@ -1222,8 +1222,6 @@ HRESULT WINAPI Rfc1766ToLcidW(LCID *pLocale, LPCWSTR pszRfc1766)
if
(
!
pLocale
||
!
pszRfc1766
)
return
E_INVALIDARG
;
*
pLocale
=
0
;
hr
=
EnumRfc1766_create
(
0
,
&
enumrfc1766
);
if
(
FAILED
(
hr
))
return
hr
;
...
...
dlls/mlang/tests/mlang.c
View file @
98435dc7
...
...
@@ -55,6 +55,11 @@ typedef struct lcid_tag_table {
}
lcid_table_entry
;
static
const
lcid_table_entry
lcid_table
[]
=
{
{
"e"
,
-
1
,
E_FAIL
},
{
""
,
-
1
,
E_FAIL
},
{
"-"
,
-
1
,
E_FAIL
},
{
"e-"
,
-
1
,
E_FAIL
},
{
"en"
,
9
,
S_OK
},
/* only en is special (using PRIMARYLANGID) */
{
"en-gb"
,
0x809
,
S_OK
},
{
"en-us"
,
0x409
,
S_OK
}
...
...
@@ -850,11 +855,7 @@ static void test_GetLcidFromRfc1766(IMultiLanguage2 *iML2)
HRESULT
ret
;
DWORD
i
;
static
WCHAR
e
[]
=
{
'e'
,
0
};
static
WCHAR
en
[]
=
{
'e'
,
'n'
,
0
};
static
WCHAR
empty
[]
=
{
0
};
static
WCHAR
dash
[]
=
{
'-'
,
0
};
static
WCHAR
e_dash
[]
=
{
'e'
,
'-'
,
0
};
static
WCHAR
en_them
[]
=
{
'e'
,
'n'
,
'-'
,
't'
,
'h'
,
'e'
,
'm'
,
0
};
static
WCHAR
english
[]
=
{
'e'
,
'n'
,
'g'
,
'l'
,
'i'
,
's'
,
'h'
,
0
};
...
...
@@ -878,18 +879,6 @@ static void test_GetLcidFromRfc1766(IMultiLanguage2 *iML2)
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
NULL
);
ok
(
ret
==
E_INVALIDARG
,
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
e
);
ok
(
ret
==
E_FAIL
,
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
empty
);
ok
(
ret
==
E_FAIL
,
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
dash
);
ok
(
ret
==
E_FAIL
,
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
e_dash
);
ok
(
ret
==
E_FAIL
,
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
ret
=
IMultiLanguage2_GetLcidFromRfc1766
(
iML2
,
&
lcid
,
en_them
);
ok
((
ret
==
E_FAIL
||
ret
==
S_FALSE
),
"GetLcidFromRfc1766 returned: %08x
\n
"
,
ret
);
if
(
ret
==
S_FALSE
)
...
...
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