/curl/tests/http/ |
H A D | test_07_upload.py | 60 pytest.skip("h3 not supported") 62 pytest.skip("msh3 fails here") 75 pytest.skip("h3 not supported") 77 pytest.skip("msh3 fails here") 91 pytest.skip("h3 not supported") 93 pytest.skip("msh3 stalls here") 108 pytest.skip("h3 not supported") 110 pytest.skip("msh3 stalls here") 127 pytest.skip("h3 not supported") 129 pytest.skip("msh3 stalls here") [all …]
|
H A D | test_02_download.py | 64 pytest.skip("h3 not supported") 74 pytest.skip("h3 not supported") 85 pytest.skip("h3 not supported") 97 pytest.skip("h3 not supported") 118 pytest.skip("h3 not supported") 120 pytest.skip("msh3 shaky here") 138 pytest.skip("h3 not supported") 153 pytest.skip("h3 not supported") 186 pytest.skip("h3 not supported") 197 pytest.skip("h3 not supported") [all …]
|
H A D | test_17_ssl_use.py | 75 pytest.skip('BearSSL does not support TLSv1.3') 107 pytest.skip("h3 not supported") 122 pytest.skip("h3 not supported") 146 pytest.skip("mbedTLS does use IP addresses in SNI") 148 pytest.skip("h3 not supported") 163 pytest.skip("h3 not supported") 253 pytest.skip("h3 not supported") 319 pytest.skip("h3 not supported") 323 pytest.skip("QUIC session reuse not implemented") 349 pytest.skip("h3 not supported") [all …]
|
H A D | test_08_caddy.py | 74 pytest.skip("h3 not supported in curl") 76 pytest.skip("msh3 itself crashes") 89 pytest.skip("msh3 itself crashes") 103 pytest.skip("msh3 itself crashes") 126 pytest.skip("msh3 itself crashes") 142 pytest.skip("msh3 itself crashes") 158 pytest.skip("msh3 itself crashes") 179 pytest.skip("h3 not supported") 181 pytest.skip("msh3 stalls here") 198 pytest.skip("h3 not supported") [all …]
|
H A D | test_14_auth.py | 51 pytest.skip("h3 not supported") 61 pytest.skip("h3 not supported") 73 pytest.skip("h3 not supported") 86 pytest.skip("h3 not supported") 103 pytest.skip("h3 not supported") 106 pytest.skip("quiche/openssl-quic have problems with large requests") 123 pytest.skip("h3 not supported") 126 pytest.skip("quiche has problems with large requests")
|
H A D | test_19_shutdown.py | 58 pytest.skip("seems not to work in CI") 73 pytest.skip('only works for curl debug builds') 90 pytest.skip('only works for curl debug builds') 109 pytest.skip('only works for curl debug builds') 118 pytest.skip(f'example client not built: {client.name}') 132 pytest.skip('only works for curl debug builds') 160 pytest.skip("h3 not supported") 162 pytest.skip('only works for curl debug builds')
|
H A D | test_05_errors.py | 52 pytest.skip("h3 not supported") 54 pytest.skip("msh3 stalls here") 75 pytest.skip("h3 not supported") 77 pytest.skip("msh3 stalls here") 122 pytest.skip("h3 not supported")
|
H A D | test_20_websockets.py | 91 pytest.skip(f'example client not built: {client.name}') 101 pytest.skip(f'example client not built: {client.name}') 110 pytest.skip(f'example client not built: {client.name}') 119 pytest.skip(f'example client not built: {client.name}') 128 pytest.skip(f'example client not built: {client.name}') 139 pytest.skip(f'example client not built: {client.name}')
|
H A D | conftest.py | 81 pytest.skip("curl built without HTTP support") 83 pytest.skip("curl built without HTTPS support") 85 pytest.skip(env.incomplete_reason()) 99 pytest.skip(f'httpd not found: {env.httpd}')
|
H A D | test_04_stuttered.py | 53 pytest.skip("h3 not supported") 69 pytest.skip("h3 not supported") 91 pytest.skip("h3 not supported") 113 pytest.skip("h3 not supported")
|
H A D | test_10_proxy.py | 75 pytest.skip('only supported with nghttp2') 97 pytest.skip('only supported with nghttp2') 153 pytest.skip('only supported with nghttp2') 180 pytest.skip('only supported with nghttp2') 210 pytest.skip('only supported with nghttp2') 232 pytest.skip('only supported with nghttp2') 256 pytest.skip('only supported with nghttp2') 282 pytest.skip('only supported with nghttp2') 307 pytest.skip('only supported with nghttp2') 333 pytest.skip('only supported with nghttp2') [all …]
|
/curl/docs/cmdline-opts/ |
H A D | ftp-skip-pasv-ip.md | 4 Long: ftp-skip-pasv-ip 13 - --ftp-skip-pasv-ip ftp://example.com/ 16 # `--ftp-skip-pasv-ip`
|
H A D | skip-existing.md | 4 Long: skip-existing 14 - --skip-existing --output local/dir/file $URL 17 # `--skip-existing`
|
H A D | ignore-content-length.md | 11 - ftp-skip-pasv-ip 22 For FTP, this makes curl skip the SIZE command to figure out the size before
|
/curl/src/ |
H A D | tool_setopt.c | 274 bool skip = FALSE; in tool_setopt_enum() local 278 skip = TRUE; in tool_setopt_enum() 312 bool skip = FALSE; in tool_setopt_SSLVERSION() local 316 skip = TRUE; in tool_setopt_SSLVERSION() 357 bool skip = FALSE; in tool_setopt_bitmask() local 361 skip = TRUE; in tool_setopt_bitmask() 613 bool skip = FALSE; in tool_setopt() local 636 skip = TRUE; in tool_setopt() 661 skip = TRUE; in tool_setopt() 675 skip = TRUE; in tool_setopt() [all …]
|
H A D | tool_dirhie.c | 123 bool skip = false; in create_dir_hierarchy() local 142 skip = true; in create_dir_hierarchy() 151 if(!skip && (-1 == mkdir(dirbuildup, (mode_t)0000750)) && in create_dir_hierarchy()
|
H A D | tool_urlglob.c | 336 static bool peek_ipv6(const char *str, size_t *skip) in peek_ipv6() argument 367 *skip = hlen; in peek_ipv6() 388 size_t skip = 0; in glob_parse() local 389 if(!peek_ipv6(pattern, &skip) && (pattern[1] == ']')) in glob_parse() 390 skip = 2; in glob_parse() 391 if(skip) { in glob_parse() 392 memcpy(buf, pattern, skip); in glob_parse() 393 buf += skip; in glob_parse() 394 pattern += skip; in glob_parse() 395 sublen += skip; in glob_parse()
|
/curl/tests/data/ |
H A D | test996 | 21 --skip-existing with file present 24 -o %LOGDIR/there http://%HOSTIP:%HTTPPORT/%TESTNUMBER --skip-existing
|
H A D | test994 | 21 --skip-existing with globbing 24 -o "%LOGDIR/#1" "http://%HOSTIP:%HTTPPORT/%TESTNUMBER/{hey,ho}" --skip-existing
|
H A D | test1491 | 17 file:// don't overwrite self with --skip-existing 20 file://localhost%FILE_PWD/%LOGDIR/test%TESTNUMBER.txt -o %LOGDIR/test%TESTNUMBER.txt --skip-existing
|
H A D | test270 | 30 FTP RETR PASV --ftp-skip-pasv-ip 33 ftp://%HOSTIP:%FTPPORT/%TESTNUMBER --ftp-skip-pasv-ip --disable-epsv
|
H A D | test995 | 35 --skip-existing without file present 38 -o %LOGDIR/there http://%HOSTIP:%HTTPPORT/%TESTNUMBER --skip-existing
|
H A D | test1056 | 47 # dodgy, but it happens on all our test platforms but Windows so skip this 49 # to skip those.
|
H A D | test1129 | 33 # we use skip to make the test server never read the full payload off 36 skip: 1053700
|
/curl/tests/unit/ |
H A D | unit1607.c | 64 static const char skip = 0; variable 68 #define IPV6ONLY(x) &skip 156 if(tests[i].address[j] == &skip)
|