mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-28 05:57:56 +00:00
Remove unnecessary code, add exports to all common variables. Signed-off-by: David Sterba <dsterba@suse.com>
49 lines
1017 B
Bash
Executable File
49 lines
1017 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# convert ext2/3/4 images to btrfs images, and make sure the results are
|
|
# clean.
|
|
|
|
LANG=C
|
|
SCRIPT_DIR=$(dirname $(readlink -f $0))
|
|
TOP=$(readlink -f $SCRIPT_DIR/../)
|
|
TEST_DEV=${TEST_DEV:-}
|
|
RESULTS="$TOP/tests/convert-tests-results.txt"
|
|
IMAGE="$TOP/tests/test.img"
|
|
|
|
source $TOP/tests/common
|
|
source $TOP/tests/common.convert
|
|
|
|
export TOP
|
|
export RESULTS
|
|
export LANG
|
|
export IMAGE
|
|
export TEST_DEV
|
|
|
|
rm -f $RESULTS
|
|
|
|
run_one_test() {
|
|
local testname
|
|
|
|
testname="$1"
|
|
echo " [TEST/conv] $testname"
|
|
cd $testname
|
|
echo "=== Entering $testname" >> $RESULTS
|
|
if [ -x test.sh ]; then
|
|
# Difference convert test case needs different tools to restore
|
|
# and check image, so only support custom test scripts
|
|
./test.sh
|
|
if [ $? -ne 0 ]; then
|
|
_fail "test failed for case $(basename $testname)"
|
|
fi
|
|
else
|
|
_fail "custom test script not found"
|
|
fi
|
|
}
|
|
|
|
# Test special images
|
|
for i in $(find $TOP/tests/convert-tests -maxdepth 1 -mindepth 1 -type d \
|
|
${TEST:+-name "$TEST"} | sort)
|
|
do
|
|
run_one_test "$i"
|
|
done
|