diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-19 13:00:42 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-19 13:00:42 +0000 |
commit | 032009dac0448687ed001a67b40e1f02f9bd90d6 (patch) | |
tree | ccf6f6bfd76508ecef2e10e40a7c1f1778eea41b | |
parent | new test files (diff) | |
download | mutator-032009dac0448687ed001a67b40e1f02f9bd90d6.tar.gz mutator-032009dac0448687ed001a67b40e1f02f9bd90d6.zip |
minor change in the clean command and where build artefacts and outputs are stored.
Diffstat (limited to '')
-rwxr-xr-x | mutator.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -64,7 +64,11 @@ if [[ "$COMMAND" == "clean" ]]; then echo "Running make clean..." echo "Killing all mutants..." "make" clean - rm "$OUTPUT" + rm ./test/"$OUTPUT" + rm ./test/misra-log + rm ./test/medium.c + rm ./test/mutant_format.c + rm ./test/mutant-lvl1.c elif [[ "$COMMAND" == "format" ]]; then echo 'using clang-format to format the mutant...' "/home/bloodstalker/llvm-clang/build/bin/clang-format" $OUTPUT > $OUTPUT_FORMAT |