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
b201cf1b
Commit
b201cf1b
authored
Oct 06, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Oct 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime/tests: Tests interaction between CloseDown and notifications.
parent
d2a606bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
2 deletions
+28
-2
dmime.c
dlls/dmime/tests/dmime.c
+28
-2
No files found.
dlls/dmime/tests/dmime.c
View file @
b201cf1b
...
...
@@ -3107,6 +3107,8 @@ static void test_notification_pmsg(void)
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_AddNotificationType
(
performance
,
&
GUID_NOTIFICATION_SEGMENT
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_AddNotificationType
(
performance
,
&
GUID_NOTIFICATION_SEGMENT
);
todo_wine
ok
(
hr
==
S_FALSE
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_PlaySegment
(
performance
,
segment
,
0
,
0
,
NULL
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
...
...
@@ -3178,8 +3180,6 @@ static void test_notification_pmsg(void)
ok
(
ret
==
WAIT_TIMEOUT
,
"got %#lx
\n
"
,
ret
);
ok
(
!
msg
,
"got %p
\n
"
,
msg
);
IDirectMusicSegment_Release
(
segment
);
hr
=
IDirectMusicPerformance_RemoveNotificationType
(
performance
,
&
GUID_NOTIFICATION_PERFORMANCE
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_RemoveNotificationType
(
performance
,
&
GUID_NOTIFICATION_SEGMENT
);
...
...
@@ -3237,8 +3237,34 @@ static void test_notification_pmsg(void)
ok
(
hr
==
S_FALSE
,
"got %#lx
\n
"
,
hr
);
/* RemoveNotificationType returns S_FALSE if already removed */
hr
=
IDirectMusicPerformance_RemoveNotificationType
(
performance
,
&
GUID_NOTIFICATION_PERFORMANCE
);
todo_wine
ok
(
hr
==
S_FALSE
,
"got %#lx
\n
"
,
hr
);
/* CloseDown removes all notifications and notification messages */
hr
=
IDirectMusicPerformance_AddNotificationType
(
performance
,
&
GUID_NOTIFICATION_SEGMENT
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_PlaySegment
(
performance
,
segment
,
0
,
0
,
NULL
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ret
=
test_tool_wait_message
(
tool
,
500
,
(
DMUS_PMSG
**
)
&
notif
);
todo_wine
ok
(
!
ret
,
"got %#lx
\n
"
,
ret
);
if
(
!
ret
)
{
check_dmus_notification_pmsg
(
notif
,
&
GUID_NOTIFICATION_SEGMENT
,
DMUS_NOTIFICATION_SEGSTART
);
hr
=
IDirectMusicPerformance_FreePMsg
(
performance
,
(
DMUS_PMSG
*
)
notif
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
}
hr
=
IDirectMusicPerformance_CloseDown
(
performance
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
hr
=
IDirectMusicPerformance_RemoveNotificationType
(
performance
,
&
GUID_NOTIFICATION_SEGMENT
);
todo_wine
ok
(
hr
==
S_FALSE
,
"got %#lx
\n
"
,
hr
);
IDirectMusicSegment_Release
(
segment
);
IDirectMusicPerformance_Release
(
performance
);
IDirectMusicTool_Release
(
tool
);
...
...
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