Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ce2cba7a
Commit
ce2cba7a
authored
Oct 07, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Oct 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add a check for a test that depends on the decimal separator being a dot.
parent
c4cc337d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
vartest.c
dlls/oleaut32/tests/vartest.c
+9
-2
No files found.
dlls/oleaut32/tests/vartest.c
View file @
ce2cba7a
...
...
@@ -3107,6 +3107,7 @@ static void test_VarRound(void)
HRESULT
hres
;
VARIANT
v
,
exp
,
vDst
;
CY
*
pcy
=
&
V_CY
(
&
v
);
char
buff
[
8
];
CHECKPTR
(
VarRound
);
...
...
@@ -3138,8 +3139,14 @@ static void test_VarRound(void)
* compare the first few digits. */
VARROUND
(
DATE
,
1
.
451
,
1
,
DATE
,
1
.
5
);
VARROUND
(
DATE
,
-
1
.
45
,
1
,
DATE
,
-
1
.
4
);
VARROUND
(
BSTR
,(
BSTR
)
szNumMin
,
1
,
R8
,
-
1
.
40
);
if
(
0
)
{
VARROUND
(
BSTR
,(
BSTR
)
szNum
,
1
,
R8
,
1
.
50
);
}
GetLocaleInfoA
(
LOCALE_USER_DEFAULT
,
LOCALE_SDECIMAL
,
buff
,
sizeof
(
buff
)
/
sizeof
(
char
));
if
(
buff
[
0
]
!=
'.'
||
buff
[
1
])
skip
(
"Skipping VarRound(BSTR) as decimal separator is '%s'
\n
"
,
buff
);
else
{
VARROUND
(
BSTR
,(
BSTR
)
szNumMin
,
1
,
R8
,
-
1
.
40
);
if
(
0
)
{
VARROUND
(
BSTR
,(
BSTR
)
szNum
,
1
,
R8
,
1
.
50
);
}
}
VARROUND
(
R4
,
1
.
23456
f
,
0
,
R4
,
1
.
0
f
);
VARROUND
(
R4
,
1
.
23456
f
,
1
,
R4
,
1
.
2
f
);
...
...
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