From d8e87e45f33c151949d7decfb9e8a0d02c1029a6 Mon Sep 17 00:00:00 2001 From: mllwchrry Date: Mon, 2 Mar 2026 16:42:19 +0200 Subject: [PATCH] unit_test: bump MAX_ARGS from 150 to 200 --- src/unit_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unit_test.h b/src/unit_test.h index bf301e53..d3b0f153 100644 --- a/src/unit_test.h +++ b/src/unit_test.h @@ -13,7 +13,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 150 +#define MAX_ARGS 200 /* Maximum number of parallel jobs */ #define MAX_SUBPROCESSES 16