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
5d7aac8c
Commit
5d7aac8c
authored
Nov 17, 2010
by
Adam Martinson
Committed by
Alexandre Julliard
Nov 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Test VT_BSTR => VT_UI8 at upper limit.
parent
d3e2e84f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
vartype.c
dlls/oleaut32/tests/vartype.c
+5
-4
No files found.
dlls/oleaut32/tests/vartype.c
View file @
5d7aac8c
...
...
@@ -2588,10 +2588,11 @@ static void test_VarUI8FromStr(void)
CHECKPTR
(
VarUI8FromStr
);
CONVERT_STR
(
VarUI8FromStr
,
NULL
,
0
);
EXPECT_MISMATCH
;
CONVERT_STR
(
VarUI8FromStr
,
"0"
,
0
);
EXPECTI8
(
0
);
CONVERT_STR
(
VarUI8FromStr
,
"-1"
,
0
);
EXPECT_OVERFLOW
;
CONVERT_STR
(
VarUI8FromStr
,
"2147483647"
,
0
);
EXPECTI8
(
2147483647
);
CONVERT_STR
(
VarUI8FromStr
,
NULL
,
0
);
EXPECT_MISMATCH
;
CONVERT_STR
(
VarUI8FromStr
,
"0"
,
0
);
EXPECTI8
(
0
);
CONVERT_STR
(
VarUI8FromStr
,
"-1"
,
0
);
EXPECT_OVERFLOW
;
CONVERT_STR
(
VarUI8FromStr
,
"2147483647"
,
0
);
EXPECTI8
(
2147483647
);
CONVERT_STR
(
VarUI8FromStr
,
"18446744073709551615"
,
0
);
todo_wine
EXPECTI864
(
0xFFFFFFFF
,
0xFFFFFFFF
);
CONVERT_STR
(
VarUI8FromStr
,
"-1.5"
,
LOCALE_NOUSEROVERRIDE
);
EXPECT_OVERFLOW
;
CONVERT_STR
(
VarUI8FromStr
,
"-0.6"
,
LOCALE_NOUSEROVERRIDE
);
EXPECT_OVERFLOW
;
...
...
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