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
b62d7e7a
Commit
b62d7e7a
authored
Jan 12, 2024
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 19, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sxs/tests: Get rid of workarounds for old Windows versions.
parent
72dc82c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
cache.c
dlls/sxs/tests/cache.c
+3
-6
No files found.
dlls/sxs/tests/cache.c
View file @
b62d7e7a
...
...
@@ -47,16 +47,13 @@ static void test_QueryAssemblyInfo( void )
ok
(
hr
==
E_INVALIDARG
,
"got %08lx
\n
"
,
hr
);
hr
=
IAssemblyCache_QueryAssemblyInfo
(
cache
,
0
,
L"wine"
,
NULL
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
)
||
broken
(
hr
==
E_INVALIDARG
)
/* winxp */
,
"got %08lx
\n
"
,
hr
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
),
"got %08lx
\n
"
,
hr
);
hr
=
IAssemblyCache_QueryAssemblyInfo
(
cache
,
0
,
L"wine,version=
\"
1.2.3.4
\"
"
,
NULL
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
)
||
broken
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_NOT_FOUND
))
/* winxp */
,
"got %08lx
\n
"
,
hr
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
),
"got %08lx
\n
"
,
hr
);
hr
=
IAssemblyCache_QueryAssemblyInfo
(
cache
,
0
,
L"wine,version=
\"
1.2.3.4
\"
,type=
\"
win32
\"
"
,
NULL
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
)
||
broken
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_NOT_FOUND
))
/* winxp */
,
"got %08lx
\n
"
,
hr
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
),
"got %08lx
\n
"
,
hr
);
hr
=
IAssemblyCache_QueryAssemblyInfo
(
cache
,
0
,
L"wine,version=
\"
1.2.3.4
\"
,type=
\"
win32
\"
,processorArchitecture=
\"
x86
\"
"
,
NULL
);
...
...
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