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
9182d5b5
Commit
9182d5b5
authored
Oct 03, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Oct 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
psapi/tests: Remove bad test.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
parent
d33984e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
17 deletions
+0
-17
psapi_main.c
dlls/psapi/tests/psapi_main.c
+0
-17
No files found.
dlls/psapi/tests/psapi_main.c
View file @
9182d5b5
...
...
@@ -147,23 +147,6 @@ static void test_EnumProcessModules(void)
ok
(
hMod
==
GetModuleHandleA
(
NULL
),
"hMod=%p GetModuleHandleA(NULL)=%p
\n
"
,
hMod
,
GetModuleHandleA
(
NULL
));
ok
(
cbNeeded
%
sizeof
(
hMod
)
==
0
,
"not a multiple of sizeof(HMODULE) cbNeeded=%d
\n
"
,
cbNeeded
);
/* Windows sometimes has a bunch of extra dlls, presumably brought in by
* aclayers.dll.
*/
if
(
cbNeeded
<
4
*
sizeof
(
HMODULE
)
||
cbNeeded
>
30
*
sizeof
(
HMODULE
))
{
HMODULE
hmods
[
100
];
int
i
;
ok
(
0
,
"cbNeeded=%d
\n
"
,
cbNeeded
);
pEnumProcessModules
(
hpQV
,
hmods
,
sizeof
(
hmods
),
&
cbNeeded
);
for
(
i
=
0
;
i
<
cbNeeded
/
sizeof
(
*
hmods
);
i
++
)
{
char
path
[
1024
];
GetModuleFileNameA
(
hmods
[
i
],
path
,
sizeof
(
path
));
trace
(
"i=%d hmod=%p path=[%s]
\n
"
,
i
,
hmods
[
i
],
path
);
}
}
}
static
void
test_GetModuleInformation
(
void
)
...
...
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