aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-29 00:30:06 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-29 00:30:06 +0000
commitcde91e105cd5cf1913a9685b0607a0f2b7b4227c (patch)
treeb9098a0faa41eba15a63592728e96b5f0e25621b /test
parentfixed the code breaking while running on all the C standard library headers. ... (diff)
downloadmutator-cde91e105cd5cf1913a9685b0607a0f2b7b4227c.tar.gz
mutator-cde91e105cd5cf1913a9685b0607a0f2b7b4227c.zip
minor fixes
Diffstat (limited to 'test')
-rw-r--r--test/testFuncs2.c3
-rw-r--r--test/testFuncs2.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/test/testFuncs2.c b/test/testFuncs2.c
index 776dc33..9bddcc6 100644
--- a/test/testFuncs2.c
+++ b/test/testFuncs2.c
@@ -174,6 +174,9 @@ void testfunc1(void)
c = 123;
c = 'c';
c = "c";
+ b = 'b';
+ b = "b";
+ a = 123;
c = '\n';
;;;;
diff --git a/test/testFuncs2.h b/test/testFuncs2.h
index 35a175f..4e577c0 100644
--- a/test/testFuncs2.h
+++ b/test/testFuncs2.h
@@ -14,9 +14,9 @@ extern int eldiablo = 0;
extern int bbbb[] = {1, 2, 3, 4, 5, 6};
-int c[2][3] = {1, 2, 3, 4, 5, 6};
+int ccccc[2][3] = {1, 2, 3, 4, 5, 6};
-int d[2][3] = {{1, 2, 3}, {4, 5, 6}};
+int ddddd[2][3] = {{1, 2, 3}, {4, 5, 6}};
int headervar;
double headervardouble;