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
15c0f0a4
Commit
15c0f0a4
authored
Oct 20, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add tests for LOCALE_RETURN_GENITIVE_NAMES flag for GetLocaleInfoW.
parent
ac14a2ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
3 deletions
+68
-3
locale.c
dlls/kernel32/tests/locale.c
+64
-0
winnls.h
include/winnls.h
+4
-3
No files found.
dlls/kernel32/tests/locale.c
View file @
15c0f0a4
...
...
@@ -183,6 +183,69 @@ static void test_GetLocaleInfoA(void)
ok
(
!
strcmp
(
buffer
,
"Monday"
),
"Expected 'Monday', got '%s'
\n
"
,
buffer
);
}
static
void
test_GetLocaleInfoW
(
void
)
{
LCID
lcid_en
=
MAKELCID
(
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_US
),
SORT_DEFAULT
);
LCID
lcid_ru
=
MAKELCID
(
MAKELANGID
(
LANG_RUSSIAN
,
SUBLANG_NEUTRAL
),
SORT_DEFAULT
);
WCHAR
bufferW
[
80
],
buffer2W
[
80
];
CHAR
bufferA
[
80
];
DWORD
ret
;
INT
i
;
ret
=
GetLocaleInfoW
(
lcid_en
,
LOCALE_SMONTHNAME1
,
bufferW
,
COUNTOF
(
bufferW
));
if
(
!
ret
)
{
win_skip
(
"GetLocaleInfoW() isn't implemented
\n
"
);
return
;
}
ret
=
GetLocaleInfoW
(
lcid_ru
,
LOCALE_SMONTHNAME1
,
bufferW
,
COUNTOF
(
bufferW
));
if
(
!
ret
)
{
win_skip
(
"LANG_RUSSIAN locale data unavailable
\n
"
);
return
;
}
ret
=
GetLocaleInfoW
(
lcid_ru
,
LOCALE_SMONTHNAME1
|
LOCALE_RETURN_GENITIVE_NAMES
,
bufferW
,
COUNTOF
(
bufferW
));
if
(
!
ret
)
{
win_skip
(
"LOCALE_RETURN_GENITIVE_NAMES isn't supported
\n
"
);
return
;
}
/* LOCALE_RETURN_GENITIVE_NAMES isn't supported for GetLocaleInfoA */
bufferA
[
0
]
=
'a'
;
ret
=
GetLocaleInfoA
(
lcid_ru
,
LOCALE_SMONTHNAME1
|
LOCALE_RETURN_GENITIVE_NAMES
,
bufferA
,
COUNTOF
(
bufferA
));
todo_wine
{
ok
(
ret
==
0
,
"LOCALE_RETURN_GENITIVE_NAMES should fail with GetLocaleInfoA
\n
"
);
ok
(
bufferA
[
0
]
==
'a'
,
"Expected buffer to be untouched
\n
"
);
}
bufferW
[
0
]
=
'a'
;
ret
=
GetLocaleInfoW
(
lcid_ru
,
LOCALE_RETURN_GENITIVE_NAMES
,
bufferW
,
COUNTOF
(
bufferW
));
todo_wine
{
ok
(
ret
==
0
,
"LOCALE_RETURN_GENITIVE_NAMES itself doesn't return anything, got %d
\n
"
,
ret
);
ok
(
bufferW
[
0
]
==
'a'
,
"Expected buffer to be untouched
\n
"
);
}
for
(
i
=
0
;
i
<
12
;
i
++
)
{
bufferW
[
0
]
=
0
;
ret
=
GetLocaleInfoW
(
lcid_ru
,
(
LOCALE_SMONTHNAME1
+
i
)
|
LOCALE_RETURN_GENITIVE_NAMES
,
bufferW
,
COUNTOF
(
bufferW
));
ok
(
ret
,
"Expected non zero result
\n
"
);
ok
(
ret
==
lstrlenW
(
bufferW
)
+
1
,
"Expected actual length, got %d, length %d
\n
"
,
ret
,
lstrlenW
(
bufferW
));
buffer2W
[
0
]
=
0
;
ret
=
GetLocaleInfoW
(
lcid_ru
,
LOCALE_SMONTHNAME1
+
i
,
buffer2W
,
COUNTOF
(
buffer2W
));
ok
(
ret
,
"Expected non zero result
\n
"
);
ok
(
ret
==
lstrlenW
(
buffer2W
)
+
1
,
"Expected actual length, got %d, length %d
\n
"
,
ret
,
lstrlenW
(
buffer2W
));
todo_wine
ok
(
lstrcmpW
(
bufferW
,
buffer2W
)
!=
0
,
"Expected genitive name to differ, got the same for month %d
\n
"
,
i
+
1
);
}
}
static
void
test_GetTimeFormatA
(
void
)
{
int
ret
;
...
...
@@ -2471,6 +2534,7 @@ START_TEST(locale)
test_EnumTimeFormatsA
();
test_EnumDateFormatsA
();
test_GetLocaleInfoA
();
test_GetLocaleInfoW
();
test_GetTimeFormatA
();
test_GetDateFormatA
();
test_GetDateFormatW
();
...
...
include/winnls.h
View file @
15c0f0a4
...
...
@@ -151,9 +151,10 @@ extern "C" {
#define LCID_ALTERNATE_SORTS 0x4
/* Locale flags */
#define LOCALE_NOUSEROVERRIDE 0x80000000
#define LOCALE_USE_CP_ACP 0x40000000
#define LOCALE_RETURN_NUMBER 0x20000000
#define LOCALE_NOUSEROVERRIDE 0x80000000
#define LOCALE_USE_CP_ACP 0x40000000
#define LOCALE_RETURN_NUMBER 0x20000000
#define LOCALE_RETURN_GENITIVE_NAMES 0x10000000
/* Locale information types */
#define LOCALE_ILANGUAGE 0x0001
...
...
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