mirror of
https://github.com/curl/curl.git
synced 2025-04-18 16:30:45 +08:00
Support multi-target cmake builds via `CURL_DIRSUFFIX` env. For example: `export CURL_DIRSUFFIX=Debug/`. Multi-target generators place their output to `src/<subdir>/`, `lib/<subdir>/`, `tests/server/<subdir>`, `tests/libtest/<subdir>` and `tests/unit/<subdir>/` by default. Before this patch, `runtests.pl` couldn't run on such builds because it expected the binaries under the their `<subdir>`-less directories. This patch allows to set such subdir and make `runtests.pl` find the binaries. In CI we use multi-target builds with tests for MSVC. It also helps Xcode-generator builds, though in CI we don't have such job running tests. There may be better solutions to configure this, but passing a custom value to `runtests.pl` including its subprocesses is somewhat tricky. The reason the configuration value expects the slash at the end is because MSYS is automagically expanding the env to a (wrong) absolute path if the slash is in the front. Also: - drop the `-DCMAKE_RUNTIME_OUTPUT_DIRECTORY_*=` workaround from CI. - replace `resolve` references in tests with a new `%RESOLVE` variable. It didn't use a filename extension before. After this patch it uses `exe_ext('TOOL')`. I'm not sure if this is the correct choice vs. `exe_ext('SRV')`. - fix `-c` option format in manual. - fix some whitespace. Note, in CI we still tweak `CMAKE_RUNTIME_OUTPUT_DIRECTORY_*` in jobs which share steps between `./configure` and cmake. It's easier that way. Ref: #15000 Cherry-picked from #16394 Closes #16452
55 lines
702 B
Plaintext
55 lines
702 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
IPv6
|
|
IPv6-hostname
|
|
</keywords>
|
|
</info>
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
Content-Length: 6
|
|
|
|
hello
|
|
</data>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
IPv6
|
|
</features>
|
|
<server>
|
|
http-ipv6
|
|
</server>
|
|
<name>
|
|
HTTP-IPv6 GET (using ip6-localhost)
|
|
</name>
|
|
<command>
|
|
-g "http://ip6-localhost:%HTTP6PORT/%TESTNUMBER"
|
|
</command>
|
|
<precheck>
|
|
%RESOLVE --ipv6 ip6-localhost
|
|
</precheck>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
GET /%TESTNUMBER HTTP/1.1
|
|
Host: ip6-localhost:%HTTP6PORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|