diff --git a/default_tasks/callgrind.sh b/default_tasks/callgrind.sh index bb43dcb..0dd237f 100755 --- a/default_tasks/callgrind.sh +++ b/default_tasks/callgrind.sh @@ -2,9 +2,6 @@ cd "$OUTDIR" -# deleting all files except excutable -echo "$(find . ! -name $EXEC_FILE -type f -delete)" - # executing file with callgrind myprint "${BLUE}executing $OUTDIR/$EXEC_FILE" valgrind --tool=callgrind --callgrind-out-file=callgrind.out ./$EXEC_FILE > exec.log diff --git a/default_tasks/gprof.sh b/default_tasks/gprof.sh index 5e1e803..47ac971 100755 --- a/default_tasks/gprof.sh +++ b/default_tasks/gprof.sh @@ -2,9 +2,6 @@ cd "$OUTDIR" -# deleting all files except excutable -echo "$(find . ! -name $EXEC_FILE -type f -delete)" - # executing file compiled with -pg myprint "${BLUE}executing $OUTDIR/$EXEC_FILE" ./$EXEC_FILE > exec.log diff --git a/default_tasks/profile.sh b/default_tasks/profile.sh index 5dce3da..f1eef00 100755 --- a/default_tasks/profile.sh +++ b/default_tasks/profile.sh @@ -2,9 +2,6 @@ cd "$OUTDIR" -# deleting all files except excutable -echo "$(find . ! -name $EXEC_FILE -type f -delete)" - # executing file compiled with -fprofile-gen myprint "${BLUE}executing $OUTDIR/$EXEC_FILE" ./$EXEC_FILE > exec.log