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
d4245634
Commit
d4245634
authored
May 22, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
May 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Fix a failing test.
parent
dd362a62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
url.c
dlls/wininet/tests/url.c
+6
-6
No files found.
dlls/wininet/tests/url.c
View file @
d4245634
...
...
@@ -320,12 +320,12 @@ static void InternetCrackUrlW_test(void)
comp
.
dwExtraInfoLength
=
sizeof
(
extra
)
/
sizeof
(
extra
[
0
]);
r
=
InternetCrackUrlW
(
url2
,
0
,
0
,
&
comp
);
ok
(
r
,
"InternetCrackUrl failed, error %lx
\n
"
,
GetLastError
());
ok
(
!
comp
.
dwSchemeLength
,
".dwSchemeLength should be 0, but is %ld
\n
"
,
comp
.
dwSchemeLength
);
ok
(
!
comp
.
dwHostNameLength
,
".dwHostNameLength should be 0, but is %ld
\n
"
,
comp
.
dwHostNameLength
);
ok
(
!
comp
.
dwUserNameLength
,
".dwUserNameLength should be 0, but is %ld
\n
"
,
comp
.
dwUserNameLength
);
ok
(
!
comp
.
dwPasswordLength
,
".dwPasswordLength should be 0, but is %ld
\n
"
,
comp
.
dwPasswordLength
);
ok
(
!
comp
.
dwExtraInfoLength
,
".dwExtraInfoLength should be 0, but is %ld
\n
"
,
comp
.
dwExtraInfoLength
);
todo_wine
{
ok
(
!
r
,
"InternetCrackUrl should have failed
\n
"
);
ok
(
GetLastError
()
==
ERROR_INTERNET_UNRECOGNIZED_SCHEME
,
"InternetCrackUrl should have failed with error ERROR_INTERNET_UNRECOGNIZED_SCHEME instead of error %ld
\n
"
,
GetLastError
()
);
}
}
static
void
fill_url_components
(
LPURL_COMPONENTS
lpUrlComponents
)
...
...
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