X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftests-common.sh;h=79a4a2f9ea4819178ba08523e2ad94ae7906d390;hp=72cda6787e6e370540798b6ec1322eb634301604;hb=e485f32e610f77f15a298f62647d0cfb3cf8d11b;hpb=a5e30a05b4d7f02c57cc8fbb18e22d6fe31a79a0 diff --git a/tests/tests-common.sh b/tests/tests-common.sh index 72cda678..79a4a2f9 100644 --- a/tests/tests-common.sh +++ b/tests/tests-common.sh @@ -1,6 +1,3 @@ -srcdir="${srcdir:-.}/.." -srcdir="$(cd $srcdir; pwd)" - if stat -c %i . &> /dev/null ; then BSD_STAT=0 else @@ -33,3 +30,32 @@ get_file_size() stat -c %s "$1" fi } + +imagex() +{ + echo "imagex $@" + if [[ $1 == info || $1 == mountrw ]]; then + ../../imagex "$@" + else + ../../imagex "$@" > /dev/null + fi +} + +wim_ctype() +{ + imagex info $1 | grep Compression | awk '{print $2}' +} + +default_cleanup() +{ + rm -rf $TEST_SUBDIR +} + +error() +{ + echo "****************************************************************" + echo " Test failure " + echo $* + echo "****************************************************************" + exit 1 +}