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
defcf092
Commit
defcf092
authored
May 11, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
May 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Show that MsiSetTargetPath updates folder properties.
parent
69bcdb7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
package.c
dlls/msi/tests/package.c
+12
-0
No files found.
dlls/msi/tests/package.c
View file @
defcf092
...
...
@@ -1144,9 +1144,21 @@ static void test_settargetpath(void)
query_file_path
(
hpkg
,
"[#RootFile]"
,
buffer
);
ok
(
!
lstrcmp
(
buffer
,
file
),
"Expected %s, got %s
\n
"
,
file
,
buffer
);
sz
=
sizeof
(
buffer
);
r
=
MsiGetPropertyA
(
hpkg
,
"TestParent"
,
buffer
,
&
sz
);
ok
(
r
==
ERROR_SUCCESS
,
"MsiGetProperty returned %u
\n
"
,
r
);
lstrcatA
(
tempdir
,
"TestParent
\\
"
);
ok
(
!
lstrcmpi
(
buffer
,
tempdir
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
tempdir
,
buffer
);
r
=
MsiSetTargetPath
(
hpkg
,
"TestParent"
,
"C:
\\
one
\\
two"
);
ok
(
r
==
ERROR_SUCCESS
,
"MsiSetTargetPath returned %d
\n
"
,
r
);
sz
=
sizeof
(
buffer
);
r
=
MsiGetPropertyA
(
hpkg
,
"TestParent"
,
buffer
,
&
sz
);
ok
(
r
==
ERROR_SUCCESS
,
"MsiGetProperty returned %u
\n
"
,
r
);
ok
(
lstrcmpi
(
buffer
,
"C:
\\
one
\\
two
\\
TestDir
\\
"
),
"Expected
\"
C:
\\
one
\\
two
\\
TestDir
\\\"
, got
\"
%s
\"\n
"
,
buffer
);
query_file_path
(
hpkg
,
"[#TestFile]"
,
buffer
);
ok
(
!
lstrcmpi
(
buffer
,
"C:
\\
one
\\
two
\\
TestDir
\\
testfile.txt"
),
"Expected C:
\\
one
\\
two
\\
TestDir
\\
testfile.txt, got %s
\n
"
,
buffer
);
...
...
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