diff options
author | bloodstalker <thabogre@gmail.com> | 2017-01-03 21:11:05 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-01-03 21:11:05 +0000 |
commit | 9a4e2d43a9a98a8fd751340c2abf5aac54655f22 (patch) | |
tree | 1daef572366ff0156bd924135e0516cd257e086f /test | |
parent | removed 9.2 output. clag catches it. (diff) | |
download | mutator-9a4e2d43a9a98a8fd751340c2abf5aac54655f22.tar.gz mutator-9a4e2d43a9a98a8fd751340c2abf5aac54655f22.zip |
added one more test for 9.2
Diffstat (limited to 'test')
-rw-r--r-- | test/testFuncs3.c | 3 | ||||
-rw-r--r-- | test/testFuncs3.h | 2 |
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 |