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
7a435c01
Commit
7a435c01
authored
Feb 28, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion/tests: Skip some tests on .NET 1.x.
parent
1461b2c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
asmname.c
dlls/fusion/tests/asmname.c
+15
-3
No files found.
dlls/fusion/tests/asmname.c
View file @
7a435c01
...
...
@@ -437,7 +437,11 @@ static void test_CreateAssemblyNameObject(void)
ok
(
hi
==
0
,
"Expected 0, got %08x
\n
"
,
hi
);
ok
(
lo
==
0
,
"Expected 0, got %08x
\n
"
,
lo
);
test_assembly_name_props
(
name
,
defaults
);
if
(
hr
==
S_OK
)
win_skip
(
".NET 1.x doesn't handle ASM_NAME_PROCESSOR_ID_ARRAY"
" and ASM_NAME_OSINFO_ARRAY correctly
\n
"
);
else
test_assembly_name_props
(
name
,
defaults
);
IAssemblyName_Release
(
name
);
...
...
@@ -469,7 +473,11 @@ static void test_CreateAssemblyNameObject(void)
ok
(
hi
==
0
,
"Expected 0, got %08x
\n
"
,
hi
);
ok
(
lo
==
0
,
"Expected 0, got %08x
\n
"
,
lo
);
test_assembly_name_props
(
name
,
emptyname
);
if
(
hr
==
S_OK
)
win_skip
(
".NET 1.x doesn't handle ASM_NAME_PROCESSOR_ID_ARRAY"
" and ASM_NAME_OSINFO_ARRAY correctly
\n
"
);
else
test_assembly_name_props
(
name
,
emptyname
);
IAssemblyName_Release
(
name
);
...
...
@@ -502,7 +510,11 @@ static void test_CreateAssemblyNameObject(void)
ok
(
hi
==
0
,
"Expected 0, got %08x
\n
"
,
hi
);
ok
(
lo
==
0
,
"Expected 0, got %08x
\n
"
,
lo
);
test_assembly_name_props
(
name
,
winename
);
if
(
hr
==
S_OK
)
win_skip
(
".NET 1.x doesn't handle ASM_NAME_PROCESSOR_ID_ARRAY"
" and ASM_NAME_OSINFO_ARRAY correctly
\n
"
);
else
test_assembly_name_props
(
name
,
winename
);
IAssemblyName_Release
(
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