X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/987fadb3bd0a40e55ba4e228dc0ef4269893a2ad..c5755ce22669bc863d6319783cc9d5d38a5bdbcc:/test/whatnow/test-ls?ds=inline diff --git a/test/whatnow/test-ls b/test/whatnow/test-ls index 7a1b77a3..6f2bebca 100755 --- a/test/whatnow/test-ls +++ b/test/whatnow/test-ls @@ -17,6 +17,9 @@ fi setup_test +# Set TERM to get consistent output. +TERM=dumb; export TERM + SPDIR="$MH_TEST_DIR/foo's bar" rm -rf "$SPDIR" mkdir "$SPDIR" @@ -33,10 +36,10 @@ actual=$MH_TEST_DIR/$$.actual # set +e -whatnowtest=`echo cd | TERM=dumb whatnow -prompt ''` +whatnowtest=`echo cd | whatnow -prompt ''` set -e -case "${whatnowtest}" in +case ${whatnowtest} in cd) cat > "$expected" < $expectederr < "$actualerr" | \ +echo 'ls' | run_prog whatnow -noedit -prompt '' 2> "$actualerr" | \ sort > "$actual" check "$expectederr" "$actualerr" 'keep first' check "$expected" "$actual" 'keep first' -# Check with SHELL unset. system () on Linux (glibc) seems to -# always use /bin/sh, so this test won't reveal anything with it. +# Check with SHELL unset. This won't reveal any problems if +# /bin/sh sets SHELL, which bash does. unset SHELL -echo 'ls' | TERM=dumb whatnow -noedit -prompt '' 2> "$actualerr" | \ +echo 'ls' | run_prog whatnow -noedit -prompt '' 2> "$actualerr" | \ sort > "$actual" check "$expectederr" "$actualerr"