From e69de4dc0b8544c0e72703f2f13a541b23592d91 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Mar 2020 16:06:39 -0400 Subject: Allow up to 10 arbitrary test arguments --- tests/framework.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/framework.h b/tests/framework.h index d317005..f1ce15c 100644 --- a/tests/framework.h +++ b/tests/framework.h @@ -18,6 +18,7 @@ struct TestCase { union TestValue caseValue; union TestValue inputValue; union TestValue truthValue; + union TestValue arg[10]; // when there are too many damn arguments }; char *array_to_string(char **array, const char *sep) { -- cgit