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
a411b858
Commit
a411b858
authored
Dec 01, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 01, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Skip the PE loader test under a Win9x platform.
parent
6c9af2bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
loader.c
dlls/kernel32/tests/loader.c
+8
-1
No files found.
dlls/kernel32/tests/loader.c
View file @
a411b858
...
...
@@ -321,7 +321,7 @@ todo_wine {
ok
(
FreeLibrary
(
hlib
),
"FreeLibrary error %d
\n
"
,
GetLastError
());
}
else
{
{
/* LoadLibrary has failed */
if
(
hlib
)
/* remove completely once Wine is fixed */
{
todo_wine
ok
(
!
hlib
,
"%d: LoadLibrary should fail
\n
"
,
i
);
...
...
@@ -332,6 +332,13 @@ todo_wine {
ok
(
!
hlib
,
"%d: LoadLibrary should fail
\n
"
,
i
);
if
(
GetLastError
()
==
ERROR_GEN_FAILURE
)
/* Win9x, broken behaviour */
{
trace
(
"skipping the loader test on Win9x
\n
"
);
DeleteFile
(
dll_name
);
return
;
}
ok
(
td
[
i
].
error
==
GetLastError
(),
"%d: expected error %d, got %d
\n
"
,
i
,
td
[
i
].
error
,
GetLastError
());
}
...
...
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