ctest: allow HTTP headers via command line

Add ability to specify HTTP headers via `ctest -T Submit`.
This commit is contained in:
Matthew Woehlke
2024-01-08 12:45:20 -05:00
committed by Brad King
parent b2ea53f484
commit 20adf8cfce
5 changed files with 43 additions and 2 deletions
+10
View File
@@ -754,6 +754,16 @@ The available ``<dashboard-options>`` are the following:
This option will submit extra files to the dashboard.
.. option:: --http-header <header>
.. versionadded:: 3.29
Append HTTP header when submitting to the dashboard.
This option will cause CTest to append the specified header
when submitting to the dashboard.
This option may be specified more than once.
.. option:: --http1.0
Submit using `HTTP 1.0`.
@@ -0,0 +1,5 @@
ctest-cli-http-headers
----------------------
* :manual:`ctest(1)` gained a :option:`--http-header <ctest --http-header>`
option to add custom headers on submission to CDash.