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
da27bb59
Commit
da27bb59
authored
May 04, 2011
by
Huw Davies
Committed by
Alexandre Julliard
May 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Skip the named time tests for locales that use the 24 hour clock.
parent
6e123f3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
varformat.c
dlls/oleaut32/tests/varformat.c
+3
-3
No files found.
dlls/oleaut32/tests/varformat.c
View file @
da27bb59
...
...
@@ -310,10 +310,10 @@ static void test_VarFormat(void)
}
/* Named time formats */
GetLocaleInfoA
(
LOCALE_USER_DEFAULT
,
LOCALE_STIME
,
buff
,
sizeof
(
buff
)
/
sizeof
(
char
));
if
(
buff
[
0
]
!=
':'
||
buff
[
1
]
)
GetLocaleInfoA
(
LOCALE_USER_DEFAULT
,
LOCALE_STIME
FORMAT
,
buff
,
sizeof
(
buff
)
/
sizeof
(
char
));
if
(
strcmp
(
buff
,
"h:mm:ss tt"
)
)
{
skip
(
"Skipping named
time tests as time separator
is '%s'
\n
"
,
buff
);
skip
(
"Skipping named
time tests as time format
is '%s'
\n
"
,
buff
);
}
else
{
...
...
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