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
68a3ed21
Commit
68a3ed21
authored
Jun 23, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi/tests: Add a simple test for the DelReg directive.
parent
95d572dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
install.c
dlls/setupapi/tests/install.c
+39
-0
No files found.
dlls/setupapi/tests/install.c
View file @
68a3ed21
...
...
@@ -137,6 +137,44 @@ static void test_cmdline(void)
ok
(
DeleteFile
(
infwithspaces
),
"Expected source inf to exist, last error was %d
\n
"
,
GetLastError
());
}
static
const
char
*
cmdline_inf_reg
=
"[Version]
\n
"
"Signature=
\"
$Chicago$
\"\n
"
"[DefaultInstall]
\n
"
"DelReg=Del.Settings
\n
"
"[Del.Settings]
\n
"
"HKCU,Software
\\
Wine
\\
setupapitest
\n
"
;
static
void
test_registry
(
void
)
{
HKEY
key
;
LONG
res
;
char
path
[
MAX_PATH
];
/* First create a registry structure we would like to be deleted */
ok
(
!
RegCreateKeyA
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
setupapitest
\\
setupapitest"
,
&
key
),
"Expected RegCreateKeyA to succeed
\n
"
);
/* Doublecheck if the registry key is present */
ok
(
!
RegOpenKeyA
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
setupapitest
\\
setupapitest"
,
&
key
),
"Expected registry key to exist
\n
"
);
create_inf_file
(
inffile
,
cmdline_inf_reg
);
sprintf
(
path
,
"%s
\\
%s"
,
CURR_DIR
,
inffile
);
run_cmdline
(
"DefaultInstall"
,
128
,
path
);
/* Check if the registry key is recursively deleted */
res
=
RegOpenKeyA
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
setupapitest"
,
&
key
);
todo_wine
ok
(
res
==
ERROR_FILE_NOT_FOUND
,
"Didn't expect the registry key to exist
\n
"
);
/* Just in case */
if
(
res
==
ERROR_SUCCESS
)
{
RegDeleteKeyA
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
setupapitest
\\
setupapitest"
);
RegDeleteKeyA
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
setupapitest"
);
}
ok
(
DeleteFile
(
inffile
),
"Expected source inf to exist, last error was %d
\n
"
,
GetLastError
());
}
static
void
test_install_svc_from
(
void
)
{
char
inf
[
2048
];
...
...
@@ -386,6 +424,7 @@ START_TEST(install)
assert
(
hhook
!=
0
);
test_cmdline
();
test_registry
();
test_install_svc_from
();
test_driver_install
();
...
...
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