Remove const from testing parameters in testframe framework (#5214)

Makes testing parameters specified with AddTest non-const again when
passed to test functions. This allows test functions to update their
parameters during execution and is particularly useful for tests
which use those parameters to accumulate statistics, error counts,
etc. without resorting to global variables.
This commit is contained in:
jhendersonHDF
2025-01-08 13:33:00 -06:00
committed by GitHub
parent 6db70303a2
commit af0b2315bd
90 changed files with 933 additions and 935 deletions
+1 -1
View File
@@ -477,7 +477,7 @@ test_array_info()
*-------------------------------------------------------------------------
*/
extern "C" void
test_array(const void *params)
test_array(void *params)
{
(void)params;