summaryrefslogtreecommitdiff
path: root/tests/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.sh')
-rwxr-xr-xtests/test.sh14
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/test.sh b/tests/test.sh
index a77d670..8f5baa5 100755
--- a/tests/test.sh
+++ b/tests/test.sh
@@ -78,12 +78,22 @@ do
# if quiet, only delete
if [ $(echo $SCR_OPT | grep -o "\-q") ]; then
- find ./php/phpt -type f \( -name '*.diff' -or -name '*.exp' -or -name '*.log' -or -name '*.out' -or -name '*.php' -or -name '*.sh' -or -name '*.mem' \) -delete
+ find ./php/phpt -type f \( \
+ -name '*.diff' -or -name '*.exp' -or -name '*.log' -or -name '*.out' \
+ -or -name '*.php' -or -name '*.sh' -or -name '*.mem' -or \
+ -name '*.phpt-diff' -or -name '*.phpt-exp' -or -name '*.phpt-log' -or -name '*.phpt-out' \
+ -or -name '*.phpt-php' -or -name '*.phpt-sh' -or -name '*.phpt-mem' \
+ \) -delete
# else delete and print
else
echo -e "\x1b[1;31;47mRemove auxiliary files...\x1b[0;0m"
- for AUXF in `find ./php/phpt -type f \( -name '*.diff' -or -name '*.exp' -or -name '*.log' -or -name '*.out' -or -name '*.php' -or -name '*.sh' -or -name '*.mem' \)`;
+ for AUXF in `find ./php/phpt -type f \( \
+ -name '*.diff' -or -name '*.exp' -or -name '*.log' -or -name '*.out' \
+ -or -name '*.php' -or -name '*.sh' -or -name '*.mem' -or \
+ -name '*.phpt-diff' -or -name '*.phpt-exp' -or -name '*.phpt-log' -or -name '*.phpt-out' \
+ -or -name '*.phpt-php' -or -name '*.phpt-sh' -or -name '*.phpt-mem' \
+ \)`;
do
echo -e "\x1b[1;31;47mdel \x1b[0;30;47m$(dirname $AUXF)/\x1b[1;31;47m$(basename $AUXF)\x1b[0;30;47m ...\x1b[0;0m"
rm $AUXF