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
9cdd9a56
Commit
9cdd9a56
authored
Sep 29, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winetest: Don't run tests on native dlls when running under Wine.
parent
c75aa35b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
main.c
programs/winetest/main.c
+25
-0
No files found.
programs/winetest/main.c
View file @
9cdd9a56
...
...
@@ -155,6 +155,20 @@ static int running_on_visible_desktop (void)
return
IsWindowVisible
(
desktop
);
}
/* check for wine fake dll module */
static
BOOL
is_fake_dll
(
HMODULE
module
)
{
static
const
char
fakedll_signature
[]
=
"Wine placeholder DLL"
;
const
IMAGE_DOS_HEADER
*
dos
;
if
(
!
((
ULONG_PTR
)
module
&
1
))
return
FALSE
;
/* not loaded as datafile */
dos
=
(
const
IMAGE_DOS_HEADER
*
)((
const
char
*
)
module
-
1
);
if
(
dos
->
e_magic
!=
IMAGE_DOS_SIGNATURE
)
return
FALSE
;
if
(
dos
->
e_lfanew
>=
sizeof
(
*
dos
)
+
sizeof
(
fakedll_signature
)
&&
!
memcmp
(
dos
+
1
,
fakedll_signature
,
sizeof
(
fakedll_signature
)
))
return
TRUE
;
return
FALSE
;
}
/* check if Gecko is present, trying to trigger the install if not */
static
BOOL
gecko_check
(
void
)
{
...
...
@@ -639,6 +653,17 @@ extract_test_proc (HMODULE hModule, LPCTSTR lpszType,
if
(
!
dll
)
dll
=
load_com_dll
(
dllname
,
&
wine_tests
[
nr_of_files
].
maindllpath
,
filename
);
if
(
dll
&&
running_under_wine
()
&&
((
ULONG_PTR
)
dll
&
1
))
{
/* builtin dlls can't be loaded as datafile, so we must have native or fake dll */
if
(
!
is_fake_dll
(
dll
))
{
FreeLibrary
(
dll
);
xprintf
(
" %s=load error Configured as native
\n
"
,
dllname
);
return
TRUE
;
}
}
if
(
!
dll
&&
pLoadLibraryShim
)
{
MultiByteToWideChar
(
CP_ACP
,
0
,
dllname
,
-
1
,
dllnameW
,
MAX_PATH
);
...
...
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