diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-04 05:08:48 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-04 05:08:48 +0000 |
commit | 413ab371b3cf087a07919736a072ab8a795db754 (patch) | |
tree | bfec8db7ecc097137c74a101dfb9d27394b0280a | |
parent | changed the makefile to build the new source file also. (diff) | |
download | mutator-413ab371b3cf087a07919736a072ab8a795db754.tar.gz mutator-413ab371b3cf087a07919736a072ab8a795db754.zip |
minor change for llvm-format
-rwxr-xr-x | mutator.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -78,8 +78,13 @@ elif [[ "$COMMAND" == "run" ]];then elif [[ "$COMMAND" == "default" ]]; then echo "Building all target executables..." "make" all + echo "Ruunning the input through clang-format..." + "/home/bloodstalker/llvm-clang/build/bin/clang-format" $INPUT -- > $OUTPUT_FORMAT + "cp" $OUTPUT_FORMAT ./medium.c echo "Running all exetubales on target input..." - "./mutator" "$INPUT" -- > "$OUTPUT" + "./mutator" "$OUTPUT_FORMAT" -- > "$OUTPUT" + echo 'Using clang-format to format the mutant...' + "/home/bloodstalker/llvm-clang/build/bin/clang-format" $OUTPUT -- > $OUTPUT_FORMAT elif [[ "$COMMAND" == "jack" ]]; then echo else |