X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/e107aac243dbd4021e57f4c455c7e3ffd82b819e..878f39953d1d908e8c151e33ea14172ea10b7c4b:/test/whatnow/test-ls diff --git a/test/whatnow/test-ls b/test/whatnow/test-ls index e3571ac9..c289830c 100755 --- a/test/whatnow/test-ls +++ b/test/whatnow/test-ls @@ -6,6 +6,8 @@ # ###################################################### +set -e + if test -z "${MH_OBJ_DIR}"; then srcdir=`dirname "$0"`/../.. MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR @@ -15,7 +17,6 @@ fi 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