From b51cc1d32555082d02a68d946cbbed0983f82270 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Mon, 25 May 2015 16:08:46 +0200 Subject: [PATCH] btrfs-progs: tests: add script to clean intermediate images Signed-off-by: David Sterba --- Makefile.in | 4 ++++ tests/clean-tests.sh | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100755 tests/clean-tests.sh diff --git a/Makefile.in b/Makefile.in index 860a390..14049b5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -169,6 +169,10 @@ test-fsck: btrfs btrfs-image btrfs-corrupt-block btrfs-debug-tree mkfs.btrfs @echo " [TEST] fsck-tests.sh" $(Q)bash tests/fsck-tests.sh +test-clean: + @echo "Cleaning tests" + $(Q)bash tests/clean-tests.sh + test: test-fsck test-convert # diff --git a/tests/clean-tests.sh b/tests/clean-tests.sh new file mode 100755 index 0000000..c1dc56a --- /dev/null +++ b/tests/clean-tests.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# remove all intermediate files from tests + +if [ "$BUILD_VERBOSE" = 1 ]; then + verbose=-print +fi + +SCRIPT_DIR=$(dirname $(readlink -f $0)) +TOP=$(readlink -f $SCRIPT_DIR/../) + +if ! cd $TOP/tests; then + echo "ERROR: cannot cd to $TOP/tests" + exit 1 +fi + +find fsck-tests -type f -name '*.restored' $verbose -delete + +# do not remove, the file could have special permissions set +echo -n > test.img -- 2.7.4