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
99f08cc7
Commit
99f08cc7
authored
Aug 31, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion/tests: Correctly test non-string properties.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b3158377
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
asmname.c
dlls/fusion/tests/asmname.c
+9
-7
No files found.
dlls/fusion/tests/asmname.c
View file @
99f08cc7
...
...
@@ -351,16 +351,14 @@ static void test_assembly_name_props_line(IAssemblyName *name,
DWORD
i
,
size
;
WCHAR
expect
[
MAX_PATH
];
WCHAR
str
[
MAX_PATH
];
CHAR
val
[
MAX_PATH
];
for
(
i
=
0
;
i
<
ASM_NAME_MAX_PARAMS
;
i
++
)
{
to_widechar
(
expect
,
vals
[
i
].
val
);
size
=
MAX_PATH
;
ZeroMemory
(
str
,
MAX_PATH
);
memset
(
str
,
0xcc
,
sizeof
(
str
)
);
hr
=
IAssemblyName_GetProperty
(
name
,
i
,
str
,
&
size
);
to_multibyte
(
val
,
str
);
ok
(
hr
==
vals
[
i
].
hr
||
broken
(
i
>=
ASM_NAME_CONFIG_MASK
&&
hr
==
E_INVALIDARG
)
||
/* .NET 1.1 */
...
...
@@ -368,11 +366,15 @@ static void test_assembly_name_props_line(IAssemblyName *name,
"%d: prop %d: Expected %08x, got %08x
\n
"
,
line
,
i
,
vals
[
i
].
hr
,
hr
);
if
(
hr
!=
E_INVALIDARG
)
{
if
(
i
==
ASM_NAME_PUBLIC_KEY_TOKEN
)
ok
(
!
memcmp
(
vals
[
i
].
val
,
str
,
size
),
"Expected a correct ASM_NAME_PUBLIC_KEY_TOKEN
\n
"
);
else
ok
(
!
lstrcmpA
(
vals
[
i
].
val
,
val
),
"%d: prop %d: Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
line
,
i
,
vals
[
i
].
val
,
val
);
ok
(
size
==
vals
[
i
].
size
,
"%d: prop %d: Expected %d, got %d
\n
"
,
line
,
i
,
vals
[
i
].
size
,
size
);
if
(
size
&&
size
!=
MAX_PATH
)
{
if
(
i
!=
ASM_NAME_NAME
&&
i
!=
ASM_NAME_CULTURE
)
ok
(
!
memcmp
(
vals
[
i
].
val
,
str
,
size
),
"%d: prop %d: wrong value
\n
"
,
line
,
i
);
else
ok
(
!
lstrcmpW
(
expect
,
str
),
"%d: prop %d: Expected %s, got %s
\n
"
,
line
,
i
,
wine_dbgstr_w
(
expect
),
wine_dbgstr_w
(
str
)
);
}
}
}
}
...
...
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