aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-27 15:34:15 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-27 15:34:15 +0000
commit3cc1dc39dc45c50f5faafa315013b5df626a9a73 (patch)
treef081e6e6524837565347d13f60e809e61193e8ce
parentadded a note regarding files including standard library headers (diff)
downloadmutator-3cc1dc39dc45c50f5faafa315013b5df626a9a73.tar.gz
mutator-3cc1dc39dc45c50f5faafa315013b5df626a9a73.zip
added a note regarding files including standard library headers
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 7ce3816..6e89133 100644
--- a/README.md
+++ b/README.md
@@ -92,16 +92,16 @@ To run the executables with the mutator UI, you can use `mutator.sh`. For a list
So for example if you want to run the TDD tests for the Misra-C checker, you run:<br/>
```bash
-<br/>
-`./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"`<br/>
-<br/>
+
+./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"<br/>
+
```
Do note that if your file has included standard header libraries, you do need to tell it where to look for them, so for the above example on Fedora, you would need to run:<br/>
```bash
-<br/>
+
./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall -I/lib/gcc/x86_64-redhat-linux/5.3.1/include/"<br/>
-<br/>
+
```
<br/>
**mutator-lvl0** will run the Misra-C:2004 checks.<br/>