mirror of
https://github.com/curl/curl.git
synced 2026-07-10 22:57:19 +03:00
```
mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]
331 | if(chunk_size >= 0) {
| ~~~~~~~~~~ ^ ~
mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow]
421 | int i, hd_len = (16 * 1024);
| ^
mod_curltest.c:288:7: note: previous declaration is here
288 | int i, chunks = 3, error_bucket = 1;
| ^
mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat]
500 | "error_handler: request cleanup, r->status=%d, aborted=%d, "
| ~~
| %u
501 | "close=%d", r->status, c->aborted, close_conn);
| ^~~~~~~~~~
mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers]
837 | };
| ^
mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat]
914 | char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec);
| ~~ ^~~~~~~~~~~~~~~~~~~~~
| %ld
mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable]
956 | apr_status_t rv;
| ^~
```
Closes #22214
|
||
|---|---|---|
| .. | ||
| testenv | ||
| .gitignore | ||
| CMakeLists.txt | ||
| config.ini.in | ||
| conftest.py | ||
| Makefile.am | ||
| requirements.txt | ||
| scorecard.py | ||
| test_01_basic.py | ||
| test_02_download.py | ||
| test_03_goaway.py | ||
| test_04_stuttered.py | ||
| test_05_errors.py | ||
| test_06_eyeballs.py | ||
| test_07_upload.py | ||
| test_08_caddy.py | ||
| test_09_push.py | ||
| test_10_proxy.py | ||
| test_11_unix.py | ||
| test_12_reuse.py | ||
| test_13_proxy_auth.py | ||
| test_14_auth.py | ||
| test_15_tracing.py | ||
| test_16_info.py | ||
| test_17_ssl_use.py | ||
| test_18_methods.py | ||
| test_19_shutdown.py | ||
| test_20_websockets.py | ||
| test_21_resolve.py | ||
| test_22_httpsrr.py | ||
| test_30_vsftpd.py | ||
| test_31_vsftpds.py | ||
| test_32_ftps_vsftpd.py | ||
| test_40_socks.py | ||
| test_50_scp.py | ||
| test_51_sftp.py | ||
| test_60_h3_proxy.py | ||