tests: raise MAX_ARGS from 200 to 400

With the chilldkg (and iceberg) modules enabled, the unit test binary
registers more than 200 tests (213 with all modules on), tripping the
"Number of tests exceeds MAX_ARGS" internal error in unit_test.c and
bailing before running anything -- both tests and noverify_tests were
unrunnable in the all-modules CI rows. MAX_ARGS must be at least the
total number of registered tests; 400 leaves headroom for future
modules and vector-suite growth.
This commit is contained in:
Kgothatso Ngako
2026-08-31 13:25:26 +02:00
parent e9f171f197
commit d9549a6c5a

View File

@@ -15,7 +15,7 @@
/* Maximum number of command-line arguments.
* Must be at least as large as the total number of tests
* to allow specifying all tests individually. */
#define MAX_ARGS 200
#define MAX_ARGS 400
/* Maximum number of parallel jobs */
#define MAX_SUBPROCESSES 16