Added test of whatnow with SHELL unset to test-ls, though it doesn't
authorDavid Levine <levinedl@acm.org>
Sun, 22 Jul 2012 17:03:36 +0000 (12:03 -0500)
committerDavid Levine <levinedl@acm.org>
Sun, 22 Jul 2012 17:03:36 +0000 (12:03 -0500)
reveal anything on Linux, at least.

test/whatnow/test-ls

index 6509fd0..7a1b77a 100755 (executable)
@@ -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.  system () on Linux (glibc) seems to
+# always use /bin/sh, so this test won't reveal anything with it.
+unset SHELL
+
+echo 'ls' | TERM=dumb whatnow -noedit -prompt '' 2> "$actualerr" | \
+       sort > "$actual"
+
 check "$expectederr" "$actualerr"
 check "$expected" "$actual"