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
2b943bfd
Commit
2b943bfd
authored
Nov 07, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix regression tests failing on Windows.
parent
c5c55210
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
db.c
dlls/msi/tests/db.c
+6
-6
No files found.
dlls/msi/tests/db.c
View file @
2b943bfd
...
...
@@ -2395,13 +2395,13 @@ static void test_join(void)
size
=
MAX_PATH
;
r
=
MsiRecordGetString
(
hrec
,
2
,
buf
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get record string: %d
\n
"
,
r
);
if
(
!
lstrcmp
(
buf
,
join_res_fifth
[
i
].
two
))
if
(
lstrcmp
(
buf
,
join_res_fifth
[
i
].
two
))
data_correct
=
FALSE
;
i
++
;
MsiCloseHandle
(
hrec
);
}
todo_wine
ok
(
data_correct
,
"data returned in the wrong order
\n
"
);
ok
(
data_correct
,
"data returned in the wrong order
\n
"
);
ok
(
i
==
1
,
"Expected 1 rows, got %d
\n
"
,
i
);
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
...
...
@@ -2551,25 +2551,25 @@ static void test_join(void)
size
=
MAX_PATH
;
r
=
MsiRecordGetString
(
hrec
,
1
,
buf
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get record string: %d
\n
"
,
r
);
if
(
!
lstrcmp
(
buf
,
join_res_eighth
[
i
].
one
))
if
(
lstrcmp
(
buf
,
join_res_eighth
[
i
].
one
))
data_correct
=
FALSE
;
size
=
MAX_PATH
;
r
=
MsiRecordGetString
(
hrec
,
2
,
buf
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get record string: %d
\n
"
,
r
);
if
(
!
lstrcmp
(
buf
,
join_res_eighth
[
i
].
two
))
if
(
lstrcmp
(
buf
,
join_res_eighth
[
i
].
two
))
data_correct
=
FALSE
;
size
=
MAX_PATH
;
r
=
MsiRecordGetString
(
hrec
,
3
,
buf
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get record string: %d
\n
"
,
r
);
if
(
!
lstrcmp
(
buf
,
join_res_eighth
[
i
].
three
))
if
(
lstrcmp
(
buf
,
join_res_eighth
[
i
].
three
))
data_correct
=
FALSE
;
size
=
MAX_PATH
;
r
=
MsiRecordGetString
(
hrec
,
4
,
buf
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to get record string: %d
\n
"
,
r
);
if
(
!
lstrcmp
(
buf
,
join_res_eighth
[
i
].
four
))
if
(
lstrcmp
(
buf
,
join_res_eighth
[
i
].
four
))
data_correct
=
FALSE
;
i
++
;
...
...
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