aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-27 15:35:07 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-27 15:35:07 +0000
commitcae6aac5b0b7a34c073765931d86e459acce717f (patch)
tree9e6e4aac9aa704f46b0d411d1a439bd07dbbe5ed
parentadded a note regarding files including standard library headers (diff)
downloadmutator-cae6aac5b0b7a34c073765931d86e459acce717f.tar.gz
mutator-cae6aac5b0b7a34c073765931d86e459acce717f.zip
added a note regarding files including standard library headers
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6e89133..32a5572 100644
--- a/README.md
+++ b/README.md
@@ -93,14 +93,14 @@ 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
-./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"<br/>
+./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"
```
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
-./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/>
+./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/>