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
1d9c680e
Commit
1d9c680e
authored
Oct 25, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Oct 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Output expected values on failing tests.
parent
a9929912
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
suminfo.c
dlls/msi/tests/suminfo.c
+3
-3
No files found.
dlls/msi/tests/suminfo.c
View file @
1d9c680e
...
...
@@ -391,10 +391,10 @@ static void test_summary_binary(void)
type
=
0
;
r
=
MsiSummaryInfoGetProperty
(
hsuminfo
,
PID_LASTPRINTED
,
&
type
,
NULL
,
NULL
,
sval
,
&
sz
);
ok
(
r
==
ERROR_SUCCESS
,
"MsiSummaryInfoGetProperty failed
\n
"
);
ok
(
!
strcmp
(
sval
,
""
),
"value incorrect
\n
"
);
ok
(
!
strcmp
(
sval
,
""
),
"Expected empty string, got %s
\n
"
,
sval
);
todo_wine
{
ok
(
type
==
VT_LPSTR
,
"type wrong
\n
"
);
ok
(
sz
==
0
,
"length wrong
\n
"
);
ok
(
type
==
VT_LPSTR
,
"Expected VT_LPSTR, got %d
\n
"
,
type
);
ok
(
sz
==
0
,
"Expected 0, got %d
\n
"
,
sz
);
}
ival
=
-
1
;
...
...
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