diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-28 21:58:07 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-28 21:58:07 +0000 |
commit | 1b34153c44ce43b09422457b107416d67dd42276 (patch) | |
tree | 9b44c1a0c8eedb1175545e5665170e7348a67aa9 /test | |
parent | added tdd tests for 16.5 and two new tdd test files (diff) | |
download | mutator-1b34153c44ce43b09422457b107416d67dd42276.tar.gz mutator-1b34153c44ce43b09422457b107416d67dd42276.zip |
update compile_commands.json for the new files and now the new files actually build.
Diffstat (limited to '')
-rw-r--r-- | test/compile_commands.json | 5 | ||||
-rw-r--r-- | test/testFuncs2.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/test/compile_commands.json b/test/compile_commands.json index 1e109de..c66a5ae 100644 --- a/test/compile_commands.json +++ b/test/compile_commands.json @@ -8,5 +8,10 @@ "command": "cc -c -o CMakeFiles/tddtest.dir/testFuncs1.c.o /home/bloodstalker/devi/hell2/test/testFuncs1.c", "directory": "/home/bloodstalker/devi/hell2/test", "file": "/home/bloodstalker/devi/hell2/test/testFuncs1.c" + }, + { + "command": "cc -c -o CMakeFiles/tddtest.dir/testFuncs2.c.o /home/bloodstalker/devi/hell2/test/testFuncs2.c", + "directory": "/home/bloodstalker/devi/hell2/test", + "file": "/home/bloodstalker/devi/hell2/test/testFuncs2.c" } ]
\ No newline at end of file diff --git a/test/testFuncs2.c b/test/testFuncs2.c index 0bbc2ca..dac8ef0 100644 --- a/test/testFuncs2.c +++ b/test/testFuncs2.c @@ -39,12 +39,12 @@ int testfunc6(void) { int a; int b; - return (); + //return (); } int testfunc7(void) { int a; int b; - return; + //return; }
\ No newline at end of file |