From 33020d2b18785e4412f1ee725ee2d457dcee3e05 Mon Sep 17 00:00:00 2001 From: Timerix Date: Mon, 8 Jun 2026 02:04:53 +0500 Subject: [PATCH] removed out files deletion from tasks (who added that thing??) --- default_tasks/callgrind.sh | 3 --- default_tasks/gprof.sh | 3 --- default_tasks/profile.sh | 3 --- 3 files changed, 9 deletions(-) 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