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
6825ed81
Commit
6825ed81
authored
Sep 02, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing trailing '\n's to ok() calls.
parent
cdf631fb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
mlang.c
dlls/mlang/tests/mlang.c
+1
-1
storage32.c
dlls/ole32/tests/storage32.c
+1
-1
clipboard.c
dlls/user/tests/clipboard.c
+1
-1
dialog.c
dlls/user/tests/dialog.c
+1
-1
No files found.
dlls/mlang/tests/mlang.c
View file @
6825ed81
...
...
@@ -299,7 +299,7 @@ static void test_EnumCodePages(IMultiLanguage2 *iML2, DWORD flags)
if
(
!
flags
)
{
ok
(
n
==
total
,
"IEnumCodePage_Next: expected %u, got %lu"
,
total
,
n
);
ok
(
n
==
total
,
"IEnumCodePage_Next: expected %u, got %lu
\n
"
,
total
,
n
);
flags
=
MIMECONTF_MIME_LATEST
;
}
...
...
dlls/ole32/tests/storage32.c
View file @
6825ed81
...
...
@@ -58,7 +58,7 @@ void test_hglobal_storage_stat(void)
todo_wine
{
ok
(
stat
.
grfMode
==
0x12
,
"grf mode is incorrect
\n
"
);
}
ok
(
!
memcmp
(
&
stat
.
clsid
,
&
test_stg_cls
,
sizeof
test_stg_cls
),
"CLSID is wrong"
);
ok
(
!
memcmp
(
&
stat
.
clsid
,
&
test_stg_cls
,
sizeof
test_stg_cls
),
"CLSID is wrong
\n
"
);
refcount
=
IStorage_Release
(
stg
);
ok
(
refcount
==
0
,
"IStorage refcount is wrong
\n
"
);
...
...
dlls/user/tests/clipboard.c
View file @
6825ed81
...
...
@@ -76,7 +76,7 @@ static void test_ClipboardOwner(void)
ok
(
!
OpenClipboard
(
hWnd2
)
&&
GetLastError
()
==
0xdeadbeef
,
"OpenClipboard should fail without setting last error value
\n
"
);
ok
(
CloseClipboard
(),
"CloseClipboard error %ld"
,
GetLastError
());
ok
(
CloseClipboard
(),
"CloseClipboard error %ld
\n
"
,
GetLastError
());
ok
(
GetClipboardOwner
()
==
hWnd1
,
"clipboard should still be owned
\n
"
);
ok
(
DestroyWindow
(
hWnd1
),
"DestroyWindow error %ld
\n
"
,
GetLastError
());
...
...
dlls/user/tests/dialog.c
View file @
6825ed81
...
...
@@ -562,7 +562,7 @@ static void WM_NEXTDLGCTLTest(void)
DefDlgProcA
(
g_hwndTestDlgBut1
,
BM_SETSTYLE
,
BS_DEFPUSHBUTTON
,
FALSE
);
dwVal
=
DefDlgProcA
(
g_hwndTestDlg
,
DM_GETDEFID
,
0
,
0
);
ok
(
IDCANCEL
==
(
LOWORD
(
dwVal
)),
"Did not set default ID"
);
ok
(
IDCANCEL
==
(
LOWORD
(
dwVal
)),
"Did not set default ID
\n
"
);
/*
* Check whether message WM_NEXTDLGCTL is changing the focus to next control and if
...
...
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