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
fd125d4a
Commit
fd125d4a
authored
Oct 12, 2022
by
Esme Povirk
Committed by
Alexandre Julliard
Oct 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs/tests: Accept new error code from win11.
parent
f87ad783
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
converter.c
dlls/windowscodecs/tests/converter.c
+2
-1
No files found.
dlls/windowscodecs/tests/converter.c
View file @
fd125d4a
...
...
@@ -1510,7 +1510,8 @@ static void test_multi_encoder_impl(const struct bitmap_data **srcs, const CLSID
hr
=
IWICBitmapFrameEncode_WriteSource_Proxy
(
frameencode
,
&
src_obj
->
IWICBitmapSource_iface
,
rc
);
if
(
!
set_size
&&
rc
->
Width
<
0
)
todo_wine
ok
(
hr
==
WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS
,
ok
(
hr
==
WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS
||
hr
==
HRESULT_FROM_WIN32
(
ERROR_ARITHMETIC_OVERFLOW
)
/* win11 */
,
"WriteSource_Proxy(%dx%d) got unexpected hr %lx (%s)
\n
"
,
rc
->
Width
,
rc
->
Height
,
hr
,
name
);
else
ok
(
hr
==
S_OK
,
"WriteSource_Proxy failed, %dx%d, hr=%lx (%s)
\n
"
,
rc
->
Width
,
rc
->
Height
,
hr
,
name
);
...
...
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