The threee tags `<name>`, `</name>` and `<command>` were frequently used with a leading space that this removes. The reason this habbit is so widespread in testcases is probably that they have been copy and pasted. Hence, fixing them all now might curb this practice from now on. Closes #12028
42 lines
604 B
Plaintext
42 lines
604 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
warning
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
none
|
|
</server>
|
|
<features>
|
|
unix-sockets
|
|
</features>
|
|
<name>
|
|
file name argument looks like a flag
|
|
</name>
|
|
<command>
|
|
--stderr %LOGDIR/moo%TESTNUMBER --unix-socket -k hej://moo
|
|
</command>
|
|
</client>
|
|
|
|
<verify>
|
|
<file name="%LOGDIR/moo%TESTNUMBER" mode="text">
|
|
Warning: The file name argument '-k' looks like a flag.
|
|
curl: (1) Protocol "hej" not supported or disabled in libcurl
|
|
</file>
|
|
|
|
# we expect an error since we provide a weird URL
|
|
<errorcode>
|
|
1
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|