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
711275e2
Commit
711275e2
authored
Mar 26, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Avoid %ll printf formats.
parent
9b49cc28
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
file.c
dlls/qmgr/tests/file.c
+4
-2
job.c
dlls/qmgr/tests/job.c
+4
-2
No files found.
dlls/qmgr/tests/file.c
View file @
711275e2
...
...
@@ -158,8 +158,10 @@ static void test_GetProgress_PreTransfer(void)
skip
(
"Unable to get progress of test_file.
\n
"
);
return
;
}
ok
(
progress
.
BytesTotal
==
BG_SIZE_UNKNOWN
,
"Got incorrect total size: %llu
\n
"
,
progress
.
BytesTotal
);
ok
(
progress
.
BytesTransferred
==
0
,
"Got incorrect number of transferred bytes: %llu
\n
"
,
progress
.
BytesTransferred
);
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
.
Completed
==
FALSE
,
"Got incorret completion status
\n
"
);
}
...
...
dlls/qmgr/tests/job.c
View file @
711275e2
...
...
@@ -246,8 +246,10 @@ static void test_GetProgress_preTransfer(void)
return
;
}
ok
(
progress
.
BytesTotal
==
0
,
"Incorrect BytesTotal: %llu
\n
"
,
progress
.
BytesTotal
);
ok
(
progress
.
BytesTransferred
==
0
,
"Incorrect BytesTransferred: %llu
\n
"
,
progress
.
BytesTransferred
);
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
.
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