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
68e84a7a
Commit
68e84a7a
authored
Sep 29, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing '\n's to ok() calls.
parent
be87fe8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
toolbar.c
dlls/comctl32/tests/toolbar.c
+1
-1
cstub.c
dlls/rpcrt4/tests/cstub.c
+1
-1
No files found.
dlls/comctl32/tests/toolbar.c
View file @
68e84a7a
...
...
@@ -269,7 +269,7 @@ static void test_add_bitmap(void)
ok
(
himl
!=
NULL
,
"failed to create imagelist
\n
"
);
ok
(
SendMessageA
(
hToolbar
,
TB_SETIMAGELIST
,
0
,
(
LPARAM
)
himl
)
==
0
,
"TB_SETIMAGELIST failed
\n
"
);
CHECK_IMAGELIST
(
4
,
20
,
15
);
ok
(
SendMessageA
(
hToolbar
,
TB_ADDBITMAP
,
1
,
(
LPARAM
)
&
bmp128
)
==
0
,
"TB_ADDBITMAP - unexpected return"
);
ok
(
SendMessageA
(
hToolbar
,
TB_ADDBITMAP
,
1
,
(
LPARAM
)
&
bmp128
)
==
0
,
"TB_ADDBITMAP - unexpected return
\n
"
);
CHECK_IMAGELIST
(
10
,
20
,
15
);
/* however TB_SETBITMAPSIZE/add std bitmap won't change the image size (the button size does change!) */
ok
(
SendMessageA
(
hToolbar
,
TB_SETBITMAPSIZE
,
0
,
MAKELONG
(
8
,
8
))
==
TRUE
,
"TB_SETBITMAPSIZE failed
\n
"
);
...
...
dlls/rpcrt4/tests/cstub.c
View file @
68e84a7a
...
...
@@ -610,7 +610,7 @@ static void test_CreateStub(IPSFactoryBuffer *ppsf)
ok
(
IsEqualIID
(
header
->
piid
,
&
IID_if1
),
"header iid differs
\n
"
);
ok
(
cstd_stub
->
RefCount
==
1
,
"ref count %ld
\n
"
,
cstd_stub
->
RefCount
);
/* 0xdeadbeef returned from create_stub_test_QI */
ok
(
cstd_stub
->
pvServerObject
==
(
void
*
)
0xdeadbeef
,
"pvServerObject %p"
,
cstd_stub
->
pvServerObject
);
ok
(
cstd_stub
->
pvServerObject
==
(
void
*
)
0xdeadbeef
,
"pvServerObject %p
\n
"
,
cstd_stub
->
pvServerObject
);
ok
(
cstd_stub
->
pPSFactory
==
ppsf
,
"pPSFactory %p
\n
"
,
cstd_stub
->
pPSFactory
);
vtbl
=
&
create_stub_test_fail_vtbl
;
...
...
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