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
aa04ea70
Commit
aa04ea70
authored
Nov 14, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Fixed basic_istream_char_read_uint64 tests.
parent
bdd9a629
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
ios.c
dlls/msvcp90/tests/ios.c
+6
-0
No files found.
dlls/msvcp90/tests/ios.c
View file @
aa04ea70
...
@@ -934,6 +934,12 @@ static void test_num_get_get_uint64(void)
...
@@ -934,6 +934,12 @@ static void test_num_get_get_uint64(void)
state
=
(
IOSB_iostate
)
call_func1
(
p_ios_base_rdstate
,
&
ss
.
basic_ios
.
base
);
state
=
(
IOSB_iostate
)
call_func1
(
p_ios_base_rdstate
,
&
ss
.
basic_ios
.
base
);
next
=
(
int
)
call_func1
(
p_basic_istream_char_get
,
&
ss
.
base
.
base1
);
next
=
(
int
)
call_func1
(
p_basic_istream_char_get
,
&
ss
.
base
.
base1
);
if
(
state
==
IOSTATE_faileof
&&
tests
[
i
].
val
==~
0
)
{
/* Maximal uint64 test is broken on 9.0.21022.8 */
skip
(
"basic_istream_char_read_uint64(MAX_UINT64) is broken
\n
"
);
continue
;
}
ok
(
tests
[
i
].
state
==
state
,
"wrong state, expected = %x found = %x
\n
"
,
tests
[
i
].
state
,
state
);
ok
(
tests
[
i
].
state
==
state
,
"wrong state, expected = %x found = %x
\n
"
,
tests
[
i
].
state
,
state
);
ok
(
tests
[
i
].
val
==
val
,
"wrong val, expected = %lx%08lx found %lx%08lx
\n
"
,
(
unsigned
long
)(
tests
[
i
].
val
>>
32
),
ok
(
tests
[
i
].
val
==
val
,
"wrong val, expected = %lx%08lx found %lx%08lx
\n
"
,
(
unsigned
long
)(
tests
[
i
].
val
>>
32
),
(
unsigned
long
)
tests
[
i
].
val
,
(
unsigned
long
)(
val
>>
32
),
(
unsigned
long
)
val
);
(
unsigned
long
)
tests
[
i
].
val
,
(
unsigned
long
)(
val
>>
32
),
(
unsigned
long
)
val
);
...
...
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