Added newline to "send" that's piped to dist. Old 2.6 Linux
[mmh] / test / whatnow / test-ls
index 6509fd0..b70f593 100755 (executable)
@@ -36,7 +36,7 @@ set +e
 whatnowtest=`echo cd | TERM=dumb whatnow -prompt ''`
 set -e
 
-case "${whatnowtest}" in
+case ${whatnowtest} in
     cd) cat > "$expected" <<EOF
 baz
 boz
@@ -61,6 +61,16 @@ EOF
 echo 'ls' | TERM=dumb whatnow -noedit -prompt '' 2> "$actualerr" | \
        sort > "$actual"
 
+check "$expectederr" "$actualerr" 'keep first'
+check "$expected" "$actual" 'keep first'
+
+# 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" | \
+       sort > "$actual"
+
 check "$expectederr" "$actualerr"
 check "$expected" "$actual"