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
7aef55a9
Commit
7aef55a9
authored
Jan 22, 2024
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 29, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime/tests: Fix copy & paste errors.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
2e9da0ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
dmime.c
dlls/dmime/tests/dmime.c
+9
-6
No files found.
dlls/dmime/tests/dmime.c
View file @
7aef55a9
...
...
@@ -4483,10 +4483,11 @@ static void test_segment_state(void)
hr
=
IDirectMusicSegmentState_GetStartPoint
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
0
,
"got %#lx
\n
"
,
time
);
tim
e
=
0xdeadbeef
;
valu
e
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetRepeats
(
state
,
&
value
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
0xdeadbeef
,
"got %#lx
\n
"
,
time
);
todo_wine
ok
(
value
==
0
,
"got %#lx
\n
"
,
value
);
time
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetStartTime
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
...
...
@@ -4566,10 +4567,11 @@ static void test_segment_state(void)
hr
=
IDirectMusicSegmentState_GetStartPoint
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
50
,
"got %lu
\n
"
,
time
);
tim
e
=
0xdeadbeef
;
valu
e
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetRepeats
(
state
,
&
value
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
0xdeadbeef
,
"got %#lx
\n
"
,
time
);
todo_wine
ok
(
value
==
0
,
"got %#lx
\n
"
,
value
);
time
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetStartTime
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
...
...
@@ -4596,10 +4598,11 @@ static void test_segment_state(void)
hr
=
IDirectMusicSegmentState_GetStartPoint
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
50
,
"got %#lx
\n
"
,
time
);
tim
e
=
0xdeadbeef
;
valu
e
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetRepeats
(
state
,
&
value
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
ok
(
time
==
0xdeadbeef
,
"got %#lx
\n
"
,
time
);
todo_wine
ok
(
value
==
0
,
"got %#lx
\n
"
,
value
);
time
=
0xdeadbeef
;
hr
=
IDirectMusicSegmentState_GetStartTime
(
state
,
&
time
);
ok
(
hr
==
S_OK
,
"got %#lx
\n
"
,
hr
);
...
...
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