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
173cd38e
Commit
173cd38e
authored
Jul 09, 2008
by
Zac Brown
Committed by
Alexandre Julliard
Jul 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Change some traces to skips in tests.
parent
e47bc772
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
http.c
dlls/wininet/tests/http.c
+4
-4
No files found.
dlls/wininet/tests/http.c
View file @
173cd38e
...
...
@@ -881,7 +881,7 @@ static void HttpSendRequestEx_test(void)
NULL
,
NULL
,
NULL
,
INTERNET_FLAG_NO_CACHE_WRITE
,
0
);
if
(
!
hRequest
&&
GetLastError
()
==
ERROR_INTERNET_NAME_NOT_RESOLVED
)
{
trace
(
"Network unreachable, skipping test
\n
"
);
skip
(
"Network unreachable, skipping test
\n
"
);
goto
done
;
}
ok
(
hRequest
!=
NULL
,
"Failed to open request handle err %u
\n
"
,
GetLastError
());
...
...
@@ -948,7 +948,7 @@ static void InternetOpenRequest_test(void)
request
=
HttpOpenRequestA
(
connect
,
NULL
,
"/"
,
NULL
,
NULL
,
types
,
INTERNET_FLAG_NO_CACHE_WRITE
,
0
);
if
(
!
request
&&
GetLastError
()
==
ERROR_INTERNET_NAME_NOT_RESOLVED
)
{
trace
(
"Network unreachable, skipping test
\n
"
);
skip
(
"Network unreachable, skipping test
\n
"
);
goto
done
;
}
ok
(
request
!=
NULL
,
"Failed to open request handle err %u
\n
"
,
GetLastError
());
...
...
@@ -990,7 +990,7 @@ static void test_http_cache(void)
request
=
HttpOpenRequestA
(
connect
,
NULL
,
"/site/about"
,
NULL
,
NULL
,
types
,
INTERNET_FLAG_NEED_FILE
,
0
);
if
(
!
request
&&
GetLastError
()
==
ERROR_INTERNET_NAME_NOT_RESOLVED
)
{
trace
(
"Network unreachable, skipping test
\n
"
);
skip
(
"Network unreachable, skipping test
\n
"
);
ok
(
InternetCloseHandle
(
connect
),
"Close connect handle failed
\n
"
);
ok
(
InternetCloseHandle
(
session
),
"Close session handle failed
\n
"
);
...
...
@@ -1086,7 +1086,7 @@ static void HttpHeaders_test(void)
NULL
,
NULL
,
NULL
,
INTERNET_FLAG_NO_CACHE_WRITE
,
0
);
if
(
!
hRequest
&&
GetLastError
()
==
ERROR_INTERNET_NAME_NOT_RESOLVED
)
{
trace
(
"Network unreachable, skipping test
\n
"
);
skip
(
"Network unreachable, skipping test
\n
"
);
goto
done
;
}
ok
(
hRequest
!=
NULL
,
"Failed to open request handle
\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