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
e8cbae2e
Commit
e8cbae2e
authored
Jul 30, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Remove unused helper argument.
parent
2f707558
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
actctx.c
dlls/kernel32/tests/actctx.c
+10
-10
No files found.
dlls/kernel32/tests/actctx.c
View file @
e8cbae2e
...
...
@@ -600,7 +600,7 @@ static void test_file_info(HANDLE handle, ULONG assid, ULONG fileid, LPCWSTR fil
HeapFree
(
GetProcessHeap
(),
0
,
info
);
}
static
HANDLE
test_create
(
const
char
*
file
,
const
char
*
manifest
)
static
HANDLE
test_create
(
const
char
*
file
)
{
ACTCTXW
actctx
;
HANDLE
handle
;
...
...
@@ -1114,7 +1114,7 @@ static void test_actctx(void)
trace
(
"manifest1
\n
"
);
handle
=
test_create
(
"test1.manifest"
,
manifest1
);
handle
=
test_create
(
"test1.manifest"
);
DeleteFileA
(
"test1.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
test_basic_info
(
handle
,
__LINE__
);
...
...
@@ -1139,7 +1139,7 @@ static void test_actctx(void)
trace
(
"manifest2 depmanifest1
\n
"
);
handle
=
test_create
(
"test2.manifest"
,
manifest2
);
handle
=
test_create
(
"test2.manifest"
);
DeleteFileA
(
"test2.manifest"
);
DeleteFileA
(
"testdep.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
...
...
@@ -1157,7 +1157,7 @@ static void test_actctx(void)
trace
(
"manifest2 depmanifest2
\n
"
);
handle
=
test_create
(
"test2-2.manifest"
,
manifest2
);
handle
=
test_create
(
"test2-2.manifest"
);
DeleteFileA
(
"test2-2.manifest"
);
DeleteFileA
(
"testdep.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
...
...
@@ -1185,7 +1185,7 @@ static void test_actctx(void)
return
;
}
handle
=
test_create
(
"test2-3.manifest"
,
manifest2
);
handle
=
test_create
(
"test2-3.manifest"
);
DeleteFileA
(
"test2-3.manifest"
);
DeleteFileA
(
"testdep.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
...
...
@@ -1215,7 +1215,7 @@ static void test_actctx(void)
return
;
}
handle
=
test_create
(
"test3.manifest"
,
manifest3
);
handle
=
test_create
(
"test3.manifest"
);
DeleteFileA
(
"test3.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
test_basic_info
(
handle
,
__LINE__
);
...
...
@@ -1242,7 +1242,7 @@ static void test_actctx(void)
return
;
}
handle
=
test_create
(
"test4.manifest"
,
manifest4
);
handle
=
test_create
(
"test4.manifest"
);
DeleteFileA
(
"test4.manifest"
);
DeleteFileA
(
"testdep.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
...
...
@@ -1262,7 +1262,7 @@ static void test_actctx(void)
skip
(
"Could not create manifest file
\n
"
);
return
;
}
handle
=
test_create
(
"..
\\
test1.manifest"
,
manifest1
);
handle
=
test_create
(
"..
\\
test1.manifest"
);
DeleteFileA
(
"..
\\
test1.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
test_basic_info
(
handle
,
__LINE__
);
...
...
@@ -1282,7 +1282,7 @@ static void test_actctx(void)
return
;
}
handle
=
test_create
(
"test1.manifest"
,
manifest1
);
handle
=
test_create
(
"test1.manifest"
);
DeleteFileA
(
"test1.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
test_basic_info
(
handle
,
__LINE__
);
...
...
@@ -1297,7 +1297,7 @@ static void test_actctx(void)
return
;
}
handle
=
test_create
(
"test1.manifest"
,
manifest1
);
handle
=
test_create
(
"test1.manifest"
);
DeleteFileA
(
"test1.manifest"
);
if
(
handle
!=
INVALID_HANDLE_VALUE
)
{
test_basic_info
(
handle
,
__LINE__
);
...
...
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