aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-31 21:08:17 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-31 21:08:17 +0000
commit892372ce9264ec65a332bc6f2764159b050a0da4 (patch)
tree23cf478c4ec93994f6f4cbb4ebbfb0e3eefc448a /README.md
parentnow all implemented rules respect the fact wether the match is from a systemh... (diff)
downloadmutator-892372ce9264ec65a332bc6f2764159b050a0da4.tar.gz
mutator-892372ce9264ec65a332bc6f2764159b050a0da4.zip
updated 1.1.2017
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 32a5572..07560ff 100644
--- a/README.md
+++ b/README.md
@@ -88,12 +88,16 @@ To run the executables with the mutator UI, you can use `mutator.sh`. For a list
* `-v, --version` prints out the version.<br/>
* `-i, --input, -input` lets you choose the input file(or a white-space-separated list of files) that is going to be passed to the mutator executable(s).<br/>
* `-o, --output, -output` lets you choose where to put the mutant.<br/>
-* `-opts --options, pass options to the executable(s). The executables support all the clang options. please enclose all the options in double quatation.`<br/>
+* `-opts --options, pass options to the executable(s). The executables support all the clang options. please enclose all the options in double quatation. This is basically a pass-through option. Everything appearing inside will be passed through to the executable.`<br/>
+
+`mutator-lvl0` options:
+* SysHeader, will let the executable know that you wish the checks to run through system headers as well. Off by default.<br/>
+* MisraC2004,MisraC2012,C2,C3 will let the executable know which Misra guidelines you want the source to be checked against. currently only supports MisraC2004 or C2.<br/>
So for example if you want to run the TDD tests for the Misra-C checker, you run:<br/>
```bash
-./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"
+./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall -std=c90 SysHeader=false C2"
```