mirror of
https://github.com/curl/curl.git
synced 2026-04-14 13:01:42 +08:00
To debug the Windows CI fails further. Acting on the suspicions that `taskkill` may sometimes be applied to the wrong process. - log task info, and task child info before calling `taskkill` on a PID. (on native Windows.) One of the calls needs PowerShell. - add env `CURL_TEST_NO_TASKKILL` to disable using `taskkill`. - add env `CURL_TEST_NO_TASKKILL_TREE` to use `taskkill` without `-t`, meaning to kill the process, but not child processes. - GHA/windows: disable `taskkill` calls, to see what happens. I'll revert or tweak this in a future commit depending on results. Ref: https://github.com/curl/curl/discussions/14854#discussioncomment-13062859 Ref: https://github.com/curl/curl/discussions/14854#discussioncomment-14913014 Closes #19421
33 lines
893 B
TOML
33 lines
893 B
TOML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
[default]
|
|
extend-ignore-identifiers-re = [
|
|
"^(ba|fo|pn|PN|UE)$",
|
|
"^(CNA|ser)$",
|
|
"^(ECT0|ECT1|HELO|htpt|PASE)$",
|
|
"^[A-Za-z0-9_-]*(EDE|GOST)[A-Z0-9_-]*$", # ciphers
|
|
"^0x[0-9a-fA-F]+FUL$", # unsigned long hex literals ending with 'F'
|
|
"^(eyeballers|HELO_smtp|optin|passin|perfec|SMTP_HELO)$",
|
|
"^(clen|req_clen|smtp_perform_helo|smtp_state_helo_resp|Tru64|_stati64)$",
|
|
"secur32",
|
|
"proxys", # this should be limited to tests/http/*. Short for secure proxy.
|
|
]
|
|
|
|
extend-ignore-re = [
|
|
".*spellchecker:disable-line",
|
|
]
|
|
|
|
[files]
|
|
extend-exclude = [
|
|
".github/scripts/codespell-ignore.words",
|
|
".github/scripts/pyspelling.words",
|
|
"docs/THANKS",
|
|
"packages/*",
|
|
"projects/Windows/tmpl/curl.vcxproj",
|
|
"projects/Windows/tmpl/libcurl.vcxproj",
|
|
"scripts/wcurl",
|
|
"tests/data/test*",
|
|
]
|