X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/93a31f9b884f8e8f3f7a7d50cf90ffd365a14f7c..a66c30d557c09799db7cd166ba5fa2a97dbafbb3:/test/whatnow/test-ls diff --git a/test/whatnow/test-ls b/test/whatnow/test-ls index 05040367..c289830c 100755 --- a/test/whatnow/test-ls +++ b/test/whatnow/test-ls @@ -6,16 +6,17 @@ # ###################################################### +set -e + if test -z "${MH_OBJ_DIR}"; then - srcdir=`dirname $0`/../.. - MH_OBJ_DIR=`cd $srcdir && pwd`; export MH_OBJ_DIR + srcdir=`dirname "$0"`/../.. + MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR fi . "$MH_OBJ_DIR/test/common.sh" setup_test -set -e SPDIR="$MH_TEST_DIR/foo's bar" rm -rf "$SPDIR" mkdir "$SPDIR" @@ -38,5 +39,11 @@ EOF # NB use of sort as the order of output of ls is not guaranteed echo 'ls' | whatnow -noedit -prompt '' 2> "$actualerr" | sort > "$actual" -diff -u $expectederr $actualerr || exit 1 -diff -u $expected $actual +check "$expectederr" "$actualerr" +check "$expected" "$actual" + +# On some platforms, need to be out of $SPDIR in order to remove it. +cd "$MH_TEST_DIR" +test ${failed:-0} -eq 0 && rm -r "$SPDIR" + +exit $failed