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
b887e7a9
Commit
b887e7a9
authored
Jul 03, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Improve some traces for the CreateTimerQueueTimer() tests.
parent
691b9b64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sync.c
dlls/kernel32/tests/sync.c
+4
-4
No files found.
dlls/kernel32/tests/sync.c
View file @
b887e7a9
...
...
@@ -784,10 +784,10 @@ static void test_timer_queue(void)
ret
=
pDeleteTimerQueueEx
(
q
,
INVALID_HANDLE_VALUE
);
ok
(
ret
,
"DeleteTimerQueueEx
\n
"
);
ok
(
n1
==
1
,
"Timer callback 1
\n
"
);
ok
(
n2
<
n3
,
"Timer callback 2
should be much slower than 3
\n
"
);
ok
(
n4
==
0
,
"Timer callback 4
\n
"
);
ok
(
n5
==
1
,
"Timer callback 5
\n
"
);
ok
(
n1
==
1
,
"Timer callback 1
expected 1 got %d
\n
"
,
n1
);
ok
(
n2
<
n3
,
"Timer callback 2
& 3 expected %d < %d
\n
"
,
n2
,
n3
);
ok
(
n4
==
0
,
"Timer callback 4
expected 0 got %d
\n
"
,
n4
);
ok
(
n5
==
1
,
"Timer callback 5
expected 1 got %d
\n
"
,
n5
);
/* Test synchronous deletion of the timer/queue with event trigger. */
e
=
CreateEvent
(
NULL
,
TRUE
,
FALSE
,
NULL
);
...
...
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