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
fafbb34f
Commit
fafbb34f
authored
May 22, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
May 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp/tests: Mark some test results on Windows 8 as broken.
parent
df5cd21f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
url.c
dlls/winhttp/tests/url.c
+6
-3
No files found.
dlls/winhttp/tests/url.c
View file @
fafbb34f
...
...
@@ -462,10 +462,13 @@ static void WinHttpCrackUrl_test( void )
reset_url_components
(
&
uc
);
ret
=
WinHttpCrackUrl
(
url_k9
,
0
,
0
,
&
uc
);
ok
(
ret
,
"WinHttpCrackUrl failed le=%u
\n
"
,
GetLastError
()
);
ok
(
uc
.
lpszUrlPath
==
url_k9
+
14
,
"unexpected path: %s
\n
"
,
wine_dbgstr_w
(
uc
.
lpszUrlPath
)
);
ok
(
uc
.
lpszUrlPath
==
url_k9
+
14
||
broken
(
uc
.
lpszUrlPath
==
url_k9
+
13
)
/* win8 */
,
"unexpected path: %s
\n
"
,
wine_dbgstr_w
(
uc
.
lpszUrlPath
)
);
ok
(
uc
.
dwUrlPathLength
==
0
,
"unexpected path length: %u
\n
"
,
uc
.
dwUrlPathLength
);
ok
(
uc
.
lpszExtraInfo
==
url_k9
+
14
,
"unexpected extra info: %s
\n
"
,
wine_dbgstr_w
(
uc
.
lpszExtraInfo
)
);
ok
(
uc
.
dwExtraInfoLength
==
0
,
"unexpected extra info length: %u
\n
"
,
uc
.
dwExtraInfoLength
);
ok
(
uc
.
lpszExtraInfo
==
url_k9
+
14
||
broken
(
uc
.
lpszExtraInfo
==
url_k9
+
13
)
/* win8 */
,
"unexpected extra info: %s
\n
"
,
wine_dbgstr_w
(
uc
.
lpszExtraInfo
)
);
ok
(
uc
.
dwExtraInfoLength
==
0
||
broken
(
uc
.
dwExtraInfoLength
==
1
)
/* win8 */
,
"unexpected extra info length: %u
\n
"
,
uc
.
dwExtraInfoLength
);
reset_url_components
(
&
uc
);
ret
=
WinHttpCrackUrl
(
url_k10
,
0
,
0
,
&
uc
);
...
...
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