mirror of
https://github.com/curl/curl.git
synced 2025-02-05 14:30:10 +08:00
Several tests referred to specific server ports even when the test didn't actually use that server or specify that it's needed. In such cases, the test harness substitutes the text "[not running]" as the port number which causes many such tests to fail due to the inability to parse the URL. These tests are changed to use %NOLISTENPORT which will always be substituted correctly.
40 lines
451 B
Plaintext
40 lines
451 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP proxy
|
|
FAILURE
|
|
</keywords>
|
|
</info>
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
none
|
|
</server>
|
|
<features>
|
|
http
|
|
proxy
|
|
</features>
|
|
<name>
|
|
Provide illegal proxy name
|
|
</name>
|
|
<command>
|
|
--proxy "http://a:b@/x" http://%HOSTIP:%NOLISTENPORT
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# Couldn't resolve proxy name
|
|
<errorcode>
|
|
5
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|