diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 16:06:39 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 16:06:39 -0400 |
commit | e69de4dc0b8544c0e72703f2f13a541b23592d91 (patch) | |
tree | 10bbd60fa2b5c0e63fef957e988d73446031ff26 | |
parent | 4c1493a5ec7b48170e5edce24ccebdf925c62a17 (diff) | |
download | spmc-e69de4dc0b8544c0e72703f2f13a541b23592d91.tar.gz |
Allow up to 10 arbitrary test arguments
-rw-r--r-- | tests/framework.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |