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
def5e1a6
Commit
def5e1a6
authored
Jan 04, 2024
by
Bernhard Kölbl
Committed by
Alexandre Julliard
Jan 04, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.media.speech/tests: Remove obsolete workarounds.
These got obsolete with
eaca0f44
. Signed-off-by:
Bernhard Kölbl
<
bkoelbl@codeweavers.com
>
parent
f3777237
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
speech.c
dlls/windows.media.speech/tests/speech.c
+0
-23
No files found.
dlls/windows.media.speech/tests/speech.c
View file @
def5e1a6
...
@@ -1472,17 +1472,6 @@ static void test_SpeechRecognitionListConstraint(void)
...
@@ -1472,17 +1472,6 @@ static void test_SpeechRecognitionListConstraint(void)
hr
=
ISpeechRecognitionListConstraintFactory_CreateWithTag
(
listconstraint_factory
,
NULL
,
NULL
,
&
listconstraint
);
hr
=
ISpeechRecognitionListConstraintFactory_CreateWithTag
(
listconstraint_factory
,
NULL
,
NULL
,
&
listconstraint
);
ok
(
hr
==
E_POINTER
,
"ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
E_POINTER
,
"ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.
\n
"
,
hr
);
/*
* The create functions break on Win10 <= 1709 x32 with the given iterator.
* Seems like a Windows bug, but if you see an issue in the test's code, please FIXME.
* Skipping these tests.
*/
if
(
broken
((
is_win10_1507
||
is_win10_1709
)
&&
(
sizeof
(
void
*
)
==
4
)))
{
win_skip
(
"SpeechRecognitionListConstraint object creation broken on Win10 <= 1709 x32!
\n
"
);
goto
skip_create
;
}
iterator_hstring_create_static
(
&
iterator_hstring
,
commands
,
ARRAY_SIZE
(
commands
));
iterator_hstring_create_static
(
&
iterator_hstring
,
commands
,
ARRAY_SIZE
(
commands
));
iterable_hstring_create_static
(
&
iterable_hstring
,
&
iterator_hstring
);
iterable_hstring_create_static
(
&
iterable_hstring
,
&
iterator_hstring
);
...
@@ -1553,7 +1542,6 @@ skip_tests:
...
@@ -1553,7 +1542,6 @@ skip_tests:
ref
=
ISpeechRecognitionListConstraint_Release
(
listconstraint
);
ref
=
ISpeechRecognitionListConstraint_Release
(
listconstraint
);
ok
(
ref
==
0
,
"Got unexpected ref %lu.
\n
"
,
ref
);
ok
(
ref
==
0
,
"Got unexpected ref %lu.
\n
"
,
ref
);
skip_create:
ref
=
ISpeechRecognitionListConstraintFactory_Release
(
listconstraint_factory
);
ref
=
ISpeechRecognitionListConstraintFactory_Release
(
listconstraint_factory
);
ok
(
ref
==
2
,
"Got unexpected ref %lu.
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got unexpected ref %lu.
\n
"
,
ref
);
...
@@ -1628,17 +1616,6 @@ static void test_Recognition(void)
...
@@ -1628,17 +1616,6 @@ static void test_Recognition(void)
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#lx.
\n
"
,
hr
);
}
}
/*
* The create functions break on Win10 <= 1709 x32 with the given iterator.
* Seems like a Windows bug, but if you see an issue in the test's code, please FIXME.
* Skipping these tests.
*/
if
(
broken
((
is_win10_1507
||
is_win10_1709
)
&&
(
sizeof
(
void
*
)
==
4
)))
{
win_skip
(
"SpeechRecognitionListConstraint object creation broken on Win10 <= 1709 x32!
\n
"
);
goto
done
;
}
hr
=
WindowsCreateString
(
recognizer_name
,
wcslen
(
recognizer_name
),
&
hstr
);
hr
=
WindowsCreateString
(
recognizer_name
,
wcslen
(
recognizer_name
),
&
hstr
);
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#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