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
239a6392
Commit
239a6392
authored
Nov 22, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Relax some more timings.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8ec8a56a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
filtergraph.c
dlls/quartz/tests/filtergraph.c
+5
-5
No files found.
dlls/quartz/tests/filtergraph.c
View file @
239a6392
...
...
@@ -3163,7 +3163,7 @@ todo_wine
check_filter_state
(
graph
,
State_Paused
);
Sleep
(
600
);
start_time
+=
60
0
*
10000
;
start_time
+=
55
0
*
10000
;
hr
=
IMediaFilter_Run
(
filter
,
0
);
todo_wine
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
check_filter_state
(
graph
,
State_Running
);
...
...
@@ -3929,12 +3929,12 @@ static void test_graph_seeking(void)
hr
=
IMediaSeeking_GetCurrentPosition
(
seeking
,
&
time
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
abs
(
time
-
1334
*
10000
)
<
4
0
*
10000
,
ok
(
abs
(
time
-
1334
*
10000
)
<
8
0
*
10000
,
"Expected about 1334ms, got %s.
\n
"
,
wine_dbgstr_longlong
(
time
));
current
=
stop
=
0xdeadbeef
;
hr
=
IMediaSeeking_GetPositions
(
seeking
,
&
current
,
&
stop
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
abs
(
current
-
1334
*
10000
)
<
4
0
*
10000
,
ok
(
abs
(
current
-
1334
*
10000
)
<
8
0
*
10000
,
"Expected about 1334ms, got %s.
\n
"
,
wine_dbgstr_longlong
(
current
));
ok
(
stop
==
8000
*
10000
,
"Got time %s.
\n
"
,
wine_dbgstr_longlong
(
stop
));
...
...
@@ -3947,12 +3947,12 @@ static void test_graph_seeking(void)
hr
=
IMediaSeeking_GetCurrentPosition
(
seeking
,
&
time
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
abs
(
time
-
1334
*
10000
)
<
4
0
*
10000
,
ok
(
abs
(
time
-
1334
*
10000
)
<
8
0
*
10000
,
"Expected about 1334ms, got %s.
\n
"
,
wine_dbgstr_longlong
(
time
));
current
=
stop
=
0xdeadbeef
;
hr
=
IMediaSeeking_GetPositions
(
seeking
,
&
current
,
&
stop
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
abs
(
current
-
1334
*
10000
)
<
4
0
*
10000
,
ok
(
abs
(
current
-
1334
*
10000
)
<
8
0
*
10000
,
"Expected about 1334ms, got %s.
\n
"
,
wine_dbgstr_longlong
(
current
));
ok
(
stop
==
8000
*
10000
,
"Got time %s.
\n
"
,
wine_dbgstr_longlong
(
stop
));
...
...
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