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
d11a6e6c
Commit
d11a6e6c
authored
Jul 06, 2017
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr/tests: Use standard wine_dbgstr_longlong.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
136d9928
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
file.c
dlls/qmgr/tests/file.c
+4
-4
job.c
dlls/qmgr/tests/job.c
+4
-4
No files found.
dlls/qmgr/tests/file.c
View file @
d11a6e6c
...
...
@@ -175,10 +175,10 @@ static void test_GetProgress_PreTransfer(void)
hres
=
IBackgroundCopyFile_GetProgress
(
test_file
,
&
progress
);
ok
(
hres
==
S_OK
,
"GetProgress failed: %08x
\n
"
,
hres
);
ok
(
progress
.
BytesTotal
==
BG_SIZE_UNKNOWN
,
"Got incorrect total size: %
x%08x
\n
"
,
(
DWORD
)(
progress
.
BytesTotal
>>
32
),
(
DWORD
)
progress
.
BytesTotal
);
ok
(
progress
.
BytesTransferred
==
0
,
"Got incorrect number of transferred bytes: %
x%08x
\n
"
,
(
DWORD
)(
progress
.
BytesTransferred
>>
32
),
(
DWORD
)
progress
.
BytesTransferred
);
ok
(
progress
.
BytesTotal
==
BG_SIZE_UNKNOWN
,
"Got incorrect total size: %
s
\n
"
,
wine_dbgstr_longlong
(
progress
.
BytesTotal
)
);
ok
(
progress
.
BytesTransferred
==
0
,
"Got incorrect number of transferred bytes: %
s
\n
"
,
wine_dbgstr_longlong
(
progress
.
BytesTransferred
)
);
ok
(
progress
.
Completed
==
FALSE
,
"Got incorrect completion status
\n
"
);
}
...
...
dlls/qmgr/tests/job.c
View file @
d11a6e6c
...
...
@@ -261,10 +261,10 @@ static void test_GetProgress_preTransfer(void)
hres
=
IBackgroundCopyJob_GetProgress
(
test_job
,
&
progress
);
ok
(
hres
==
S_OK
,
"GetProgress failed: 0x%08x
\n
"
,
hres
);
ok
(
progress
.
BytesTotal
==
0
,
"Incorrect BytesTotal: %
x%08x
\n
"
,
(
DWORD
)(
progress
.
BytesTotal
>>
32
),
(
DWORD
)
progress
.
BytesTotal
);
ok
(
progress
.
BytesTransferred
==
0
,
"Incorrect BytesTransferred: %
x%08x
\n
"
,
(
DWORD
)(
progress
.
BytesTransferred
>>
32
),
(
DWORD
)
progress
.
BytesTransferred
);
ok
(
progress
.
BytesTotal
==
0
,
"Incorrect BytesTotal: %
s
\n
"
,
wine_dbgstr_longlong
(
progress
.
BytesTotal
)
);
ok
(
progress
.
BytesTransferred
==
0
,
"Incorrect BytesTransferred: %
s
\n
"
,
wine_dbgstr_longlong
(
progress
.
BytesTransferred
)
);
ok
(
progress
.
FilesTotal
==
0
,
"Incorrect FilesTotal: %u
\n
"
,
progress
.
FilesTotal
);
ok
(
progress
.
FilesTransferred
==
0
,
"Incorrect FilesTransferred %u
\n
"
,
progress
.
FilesTransferred
);
}
...
...
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