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
b9ea2572
Commit
b9ea2572
authored
Jun 04, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
Jun 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: suminfo: Add tests for MsiSummaryInfoGetProperty for unknown property values.
parent
7de83c18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
suminfo.c
dlls/msi/tests/suminfo.c
+10
-0
No files found.
dlls/msi/tests/suminfo.c
View file @
b9ea2572
...
@@ -99,6 +99,16 @@ static void test_suminfo(void)
...
@@ -99,6 +99,16 @@ static void test_suminfo(void)
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
0
,
NULL
,
NULL
,
NULL
,
0
,
NULL
);
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
0
,
NULL
,
NULL
,
NULL
,
0
,
NULL
);
ok
(
r
==
ERROR_SUCCESS
,
"getpropcount failed
\n
"
);
ok
(
r
==
ERROR_SUCCESS
,
"getpropcount failed
\n
"
);
/* Page faults in wine */
if
(
0
)
{
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
-
1
,
NULL
,
NULL
,
NULL
,
0
,
NULL
);
ok
(
r
==
ERROR_UNKNOWN_PROPERTY
,
"MsiSummaryInfoGetProperty wrong error
\n
"
);
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
PID_SECURITY
+
1
,
NULL
,
NULL
,
NULL
,
0
,
NULL
);
ok
(
r
==
ERROR_UNKNOWN_PROPERTY
,
"MsiSummaryInfoGetProperty wrong error
\n
"
);
}
type
=
-
1
;
type
=
-
1
;
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
0
,
&
type
,
NULL
,
NULL
,
0
,
NULL
);
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
0
,
&
type
,
NULL
,
NULL
,
0
,
NULL
);
ok
(
r
==
ERROR_SUCCESS
,
"getpropcount failed
\n
"
);
ok
(
r
==
ERROR_SUCCESS
,
"getpropcount failed
\n
"
);
...
...
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