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
9ca19726
Commit
9ca19726
authored
Nov 02, 2010
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Add a trailing '\n' to ok() calls.
parent
6fb3a0a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
url.c
dlls/wininet/tests/url.c
+2
-2
No files found.
dlls/wininet/tests/url.c
View file @
9ca19726
...
@@ -343,7 +343,7 @@ static void test_crack_url(const crack_url_test_t *test)
...
@@ -343,7 +343,7 @@ static void test_crack_url(const crack_url_test_t *test)
ok
(
!
strcmp
(
scheme
,
test
->
exp_scheme
),
"[%s] Got wrong scheme, expected: %s, got: %s
\n
"
,
ok
(
!
strcmp
(
scheme
,
test
->
exp_scheme
),
"[%s] Got wrong scheme, expected: %s, got: %s
\n
"
,
test
->
url
,
test
->
exp_scheme
,
scheme
);
test
->
url
,
test
->
exp_scheme
,
scheme
);
ok
(
url
.
nScheme
==
test
->
scheme
,
"[%s] Got wrong nScheme, expected: %d, got: %d"
,
ok
(
url
.
nScheme
==
test
->
scheme
,
"[%s] Got wrong nScheme, expected: %d, got: %d
\n
"
,
test
->
url
,
test
->
scheme
,
url
.
nScheme
);
test
->
url
,
test
->
scheme
,
url
.
nScheme
);
ok
(
url
.
dwHostNameLength
==
strlen
(
test
->
exp_hostname
),
"[%s] Got wrong hostname length: %d
\n
"
,
ok
(
url
.
dwHostNameLength
==
strlen
(
test
->
exp_hostname
),
"[%s] Got wrong hostname length: %d
\n
"
,
...
@@ -398,7 +398,7 @@ static void test_crack_url(const crack_url_test_t *test)
...
@@ -398,7 +398,7 @@ static void test_crack_url(const crack_url_test_t *test)
ok
(
!
lstrcmpW
((
WCHAR
*
)
scheme
,
w_str_of
(
test
->
exp_scheme
)),
"[%s] Got wrong scheme, expected: %s, got: %s
\n
"
,
ok
(
!
lstrcmpW
((
WCHAR
*
)
scheme
,
w_str_of
(
test
->
exp_scheme
)),
"[%s] Got wrong scheme, expected: %s, got: %s
\n
"
,
test
->
url
,
test
->
exp_scheme
,
wine_dbgstr_w
((
WCHAR
*
)
scheme
));
test
->
url
,
test
->
exp_scheme
,
wine_dbgstr_w
((
WCHAR
*
)
scheme
));
ok
(
urlw
.
nScheme
==
test
->
scheme
,
"[%s] Got wrong nScheme, expected: %d, got: %d"
,
ok
(
urlw
.
nScheme
==
test
->
scheme
,
"[%s] Got wrong nScheme, expected: %d, got: %d
\n
"
,
test
->
url
,
test
->
scheme
,
urlw
.
nScheme
);
test
->
url
,
test
->
scheme
,
urlw
.
nScheme
);
ok
(
urlw
.
dwHostNameLength
==
strlen
(
test
->
exp_hostname
),
"[%s] Got wrong hostname length: %d
\n
"
,
ok
(
urlw
.
dwHostNameLength
==
strlen
(
test
->
exp_hostname
),
"[%s] Got wrong hostname length: %d
\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