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
22c1c9b5
Commit
22c1c9b5
authored
Jan 07, 2017
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd/tests: Fix a couple of ITriggerCollection ok() messages.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ae6c2d23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
scheduler.c
dlls/taskschd/tests/scheduler.c
+2
-2
No files found.
dlls/taskschd/tests/scheduler.c
View file @
22c1c9b5
...
...
@@ -1459,7 +1459,7 @@ if (hr == S_OK)
hr
=
ITaskDefinition_get_Triggers
(
taskdef
,
&
trigger_col
);
ok
(
hr
==
S_OK
,
"get_Triggers failed: %08x
\n
"
,
hr
);
ok
(
trigger_col
!=
NULL
,
"Trigers = NULL
\n
"
);
ok
(
trigger_col
!=
NULL
,
"Trig
g
ers = NULL
\n
"
);
hr
=
ITriggerCollection_Create
(
trigger_col
,
TASK_TRIGGER_DAILY
,
&
trigger
);
ok
(
hr
==
S_OK
,
"Create failed: %08x
\n
"
,
hr
);
...
...
@@ -1470,7 +1470,7 @@ if (hr == S_OK)
hr
=
ITaskDefinition_get_Triggers
(
taskdef
,
&
trigger_col2
);
ok
(
hr
==
S_OK
,
"get_Triggers failed: %08x
\n
"
,
hr
);
ok
(
trigger_col
==
trigger_col2
,
"
Trigers = NULL
\n
"
);
ok
(
trigger_col
==
trigger_col2
,
"
Mismatched triggers
\n
"
);
ITriggerCollection_Release
(
trigger_col2
);
IRegistrationInfo_Release
(
reginfo
);
...
...
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