Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f9e33e9a
Commit
f9e33e9a
authored
Jun 04, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Ignore case when comparing file names.
parent
761736e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
package.c
dlls/msi/tests/package.c
+4
-4
No files found.
dlls/msi/tests/package.c
View file @
f9e33e9a
...
...
@@ -980,13 +980,13 @@ static void test_settargetpath(void)
ok
(
r
==
ERROR_SUCCESS
,
"MsiSetTargetPath returned %d
\n
"
,
r
);
query_file_path
(
hpkg
,
"[#TestFile]"
,
buffer
);
ok
(
!
lstrcmp
(
buffer
,
"C:
\\
one
\\
two
\\
TestDir
\\
testfile.txt"
),
ok
(
!
lstrcmp
i
(
buffer
,
"C:
\\
one
\\
two
\\
TestDir
\\
testfile.txt"
),
"Expected C:
\\
one
\\
two
\\
TestDir
\\
testfile.txt, got %s
\n
"
,
buffer
);
sz
=
sizeof
buffer
-
1
;
r
=
MsiGetTargetPath
(
hpkg
,
"TestParent"
,
buffer
,
&
sz
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get target path: %d
\n
"
,
r
);
ok
(
!
lstrcmp
(
buffer
,
"C:
\\
one
\\
two
\\
"
),
"Expected C:
\\
one
\\
two
\\
, got %s
\n
"
,
buffer
);
ok
(
!
lstrcmp
i
(
buffer
,
"C:
\\
one
\\
two
\\
"
),
"Expected C:
\\
one
\\
two
\\
, got %s
\n
"
,
buffer
);
MsiCloseHandle
(
hpkg
);
}
...
...
@@ -8790,7 +8790,7 @@ static void test_appsearch_drlocator(void)
search_absolute_directory
(
path
,
CURR_DIR
+
3
);
r
=
MsiGetPropertyA
(
hpkg
,
"SIGPROP3"
,
prop
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
prop
,
path
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
path
,
prop
);
ok
(
!
lstrcmp
i
A
(
prop
,
path
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
path
,
prop
);
size
=
MAX_PATH
;
r
=
MsiGetPropertyA
(
hpkg
,
"SIGPROP4"
,
prop
,
&
size
);
...
...
@@ -8837,7 +8837,7 @@ static void test_appsearch_drlocator(void)
search_absolute_directory
(
path
,
""
);
r
=
MsiGetPropertyA
(
hpkg
,
"SIGPROP11"
,
prop
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
prop
,
path
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
path
,
prop
);
ok
(
!
lstrcmp
i
A
(
prop
,
path
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
path
,
prop
);
DeleteFileA
(
"FileName1"
);
DeleteFileA
(
"FileName3.dll"
);
...
...
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