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
32d002c7
Commit
32d002c7
authored
Sep 19, 2006
by
Benjamin Arai
Committed by
Alexandre Julliard
Sep 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Adds tests to check if joins return the correct number of rows.
parent
d4c6b06e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
db.c
dlls/msi/tests/db.c
+29
-0
No files found.
dlls/msi/tests/db.c
View file @
32d002c7
...
...
@@ -1893,6 +1893,11 @@ static void test_join(void)
MsiCloseHandle
(
hrec
);
}
todo_wine
{
ok
(
i
==
5
,
"Expected 5 rows, got %ld
\n
"
,
i
);
}
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
MsiViewClose
(
hview
);
...
...
@@ -1937,6 +1942,11 @@ static void test_join(void)
todo_wine
{
ok
(
i
==
2
,
"Expected 2 rows, got %ld
\n
"
,
i
);
}
todo_wine
{
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
}
...
...
@@ -1975,6 +1985,8 @@ static void test_join(void)
MsiCloseHandle
(
hrec
);
}
ok
(
i
==
2
,
"Expected 2 rows, got %ld
\n
"
,
i
);
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
MsiViewClose
(
hview
);
...
...
@@ -2012,6 +2024,8 @@ static void test_join(void)
MsiCloseHandle
(
hrec
);
}
ok
(
i
==
1
,
"Expected 1 rows, got %ld
\n
"
,
i
);
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
MsiViewClose
(
hview
);
...
...
@@ -2058,6 +2072,11 @@ static void test_join(void)
todo_wine
{
ok
(
i
==
1
,
"Expected 1 rows, got %ld
\n
"
,
i
);
}
todo_wine
{
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
}
...
...
@@ -2104,6 +2123,11 @@ static void test_join(void)
todo_wine
{
ok
(
i
==
6
,
"Expected 6 rows, got %ld
\n
"
,
i
);
}
todo_wine
{
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
}
...
...
@@ -2151,6 +2175,11 @@ static void test_join(void)
todo_wine
{
ok
(
i
==
3
,
"Expected 3 rows, got %ld
\n
"
,
i
);
}
todo_wine
{
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"expected no more items: %d
\n
"
,
r
);
}
...
...
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