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
9b0ce65b
Commit
9b0ce65b
authored
Nov 07, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Fixed long long printing in tests.
parent
9c319baa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
ios.c
dlls/msvcp90/tests/ios.c
+4
-2
No files found.
dlls/msvcp90/tests/ios.c
View file @
9b0ce65b
...
...
@@ -828,7 +828,8 @@ static void test_num_get_get_uint64(void)
next
=
(
int
)
call_func1
(
p_basic_istream_char_get
,
&
ss
.
base
.
base1
);
ok
(
tests
[
i
].
state
==
state
,
"wrong state, expected = %x found = %x
\n
"
,
tests
[
i
].
state
,
state
);
ok
(
tests
[
i
].
val
==
val
,
"wrong val, expected = %llu found %llu
\n
"
,
(
unsigned
long
long
)
tests
[
i
].
val
,
(
unsigned
long
long
)
val
);
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
);
ok
(
tests
[
i
].
next
==
next
,
"wrong next, expected = %c (%i) found = %c (%i)
\n
"
,
tests
[
i
].
next
,
tests
[
i
].
next
,
next
,
next
);
if
(
tests
[
i
].
lcl
)
...
...
@@ -854,7 +855,8 @@ static void test_num_get_get_uint64(void)
nextus
=
(
unsigned
short
)(
int
)
call_func1
(
p_basic_istream_wchar_get
,
&
wss
.
base
.
base1
);
ok
(
tests
[
i
].
state
==
state
,
"wrong state, expected = %x found = %x
\n
"
,
tests
[
i
].
state
,
state
);
ok
(
tests
[
i
].
val
==
val
,
"wrong val, expected = %llu found %llu
\n
"
,
(
unsigned
long
long
)
tests
[
i
].
val
,
(
unsigned
long
long
)
val
);
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
);
testus
=
tests
[
i
].
next
==
EOF
?
WEOF
:
(
unsigned
short
)
tests
[
i
].
next
;
ok
(
testus
==
nextus
,
"wrong next, expected = %c (%i) found = %c (%i)
\n
"
,
testus
,
testus
,
nextus
,
nextus
);
...
...
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