summaryrefslogtreecommitdiff
path: root/tests/clean-tests.sh
blob: c1dc56af98d54cfecde3f7cdb047fd8c89185800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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