aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/testFuncs3.c3
-rw-r--r--test/testFuncs3.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/test/testFuncs3.c b/test/testFuncs3.c
index e2f1081..6153ab3 100644
--- a/test/testFuncs3.c
+++ b/test/testFuncs3.c
@@ -3,7 +3,8 @@
#include <complex.h>
-int intarray3[2][3] = MACRO1;
+int intarray3[3][2] = MACRO1;
+int intarray4[3][2] = MACRO2;
int answer = ANSWER;
void tddfunc1 (void)
diff --git a/test/testFuncs3.h b/test/testFuncs3.h
index 9b78c99..efe5bd3 100644
--- a/test/testFuncs3.h
+++ b/test/testFuncs3.h
@@ -31,6 +31,7 @@
#endif
#define MACRO1 {{1,2},{3,4},{5,6}}
+#define MACRO2 {1,2,3,4,5,6}
#define READ_TIME_32() \
do { \
@@ -49,3 +50,4 @@ do { \
} while (a < 10)
#define ANSWER (17U)
+#define STRINGLIT "dodo" \ No newline at end of file