mirror of
https://github.com/curl/curl.git
synced 2026-04-16 03:11:44 +03:00
Test became flaky with memanalyze errors after merging #19845,
in a TrackMemory Windows Unicode c-ares openssl-quic build:
GHA/windows: mingw, AM x86_64 c-ares U.
Disable it until further investigation.
This test uses the Windows-specific multi-threaded stdin code
that caused issues in the past. It's also using `TerminateThread()`,
that apps aren't supposed to.
Examples:
https://github.com/curl/curl/pull/19845#issuecomment-3614921298
https://github.com/curl/curl/actions/runs/19948992659/job/57205061260?pr=19845#step:13:3028
https://github.com/curl/curl/actions/runs/19966429786/job/57259325027?pr=19852#step:13:3030
Also seen to fail earlier while testing torture tests on Windows:
https://github.com/curl/curl/pull/19675#issuecomment-3573154110
Ref: 4e051ff550 #19845
Closes #19855
59 lines
824 B
Text
59 lines
824 B
Text
<testcase>
|
|
# Similar to test 60 and 1068
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP PUT
|
|
chunked Transfer-Encoding
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data crlf="headers">
|
|
HTTP/1.0 200 OK swsclose
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
|
|
blablabla
|
|
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<features>
|
|
!win32
|
|
</features>
|
|
<name>
|
|
HTTP PUT from stdin using period
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/bzz/%TESTNUMBER -T .
|
|
</command>
|
|
<stdin>
|
|
%repeat[2000 x hej]%
|
|
</stdin>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
PUT /bzz/%TESTNUMBER HTTP/1.1%CR
|
|
Host: %HOSTIP:%HTTPPORT%CR
|
|
User-Agent: curl/%VERSION%CR
|
|
Accept: */*%CR
|
|
Transfer-Encoding: chunked%CR
|
|
Expect: 100-continue%CR
|
|
%CR
|
|
1771%CR
|
|
%repeat[2000 x hej]%
|
|
%CR
|
|
0%CR
|
|
%CR
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|