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
661c2b8a
Commit
661c2b8a
authored
Jun 13, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Add DECIMAL tests.
parent
13377263
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
vartype.c
dlls/oleaut32/tests/vartype.c
+5
-0
No files found.
dlls/oleaut32/tests/vartype.c
View file @
661c2b8a
...
...
@@ -4335,6 +4335,9 @@ static void test_VarDecAdd(void)
ok
(
hres
==
DISP_E_OVERFLOW
,
"Expected overflow, got (%d,%d,%d,(%8x,%8x)x) hres 0x%08x
\n
"
,
S
(
U
(
out
)).
scale
,
S
(
U
(
out
)).
sign
,
out
.
Hi32
,
S1
(
U1
(
out
)).
Mid32
,
S1
(
U1
(
out
)).
Lo32
,
hres
);
SETDEC
(
l
,
3
,
128
,
0
,
123456
);
SETDEC64
(
r
,
0
,
0
,
0xFFFFFFFF
,
0xFFFFFFFF
,
0xFFFFFFFF
);
MATH2
(
VarDecAdd
);
todo_wine
EXPECTDEC64
(
0
,
0
,
-
1
,
0xFFFFFFFF
,
0xFFFFFF84
);
/* Promotes to the highest scale, so here the results are in the scale of 2 */
SETDEC
(
l
,
2
,
0
,
0
,
0
);
SETDEC
(
r
,
0
,
0
,
0
,
0
);
MATH2
(
VarDecAdd
);
EXPECTDEC
(
2
,
0
,
0
,
0
);
SETDEC
(
l
,
2
,
0
,
0
,
100
);
SETDEC
(
r
,
0
,
0
,
0
,
1
);
MATH2
(
VarDecAdd
);
EXPECTDEC
(
2
,
0
,
0
,
200
);
...
...
@@ -4555,6 +4558,8 @@ static void test_VarDecCmp(void)
SETDEC
(
out
,
0
,
DECIMAL_NEG
,
-
1
,
-
1
);
SETDEC
(
l
,
0
,
DECIMAL_NEG
,
0
,
0
);
MATH1
(
VarDecCmp
);
EXPECT_GT
;
SETDEC
(
out
,
0
,
DECIMAL_NEG
,
-
1
,
-
1
);
SETDEC
(
l
,
0
,
DECIMAL_NEG
,
-
1
,
-
1
);
MATH1
(
VarDecCmp
);
EXPECT_EQ
;
SETDEC
(
l
,
3
,
0
,
0
,
123456
);
SETDEC64
(
out
,
0
,
0
,
0xFFFFFFFF
,
0xFFFFFFFF
,
0xFFFFFFFF
);
MATH1
(
VarDecCmp
);
todo_wine
EXPECT_LT
;
}
static
void
test_VarDecCmpR8
(
void
)
...
...
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