From: David Levine Date: Fri, 1 Feb 2013 03:24:53 +0000 (-0600) Subject: More homing in on the test-pick warning. Also, removed X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/495fe9e122c1e90d5ce8cddeb5925b0dae22018c?hp=-c More homing in on the test-pick warning. Also, removed warning to user that the tty test is being skipped, it's not that important. --- 495fe9e122c1e90d5ce8cddeb5925b0dae22018c diff --git a/test/pick/test-pick b/test/pick/test-pick index eb8d9884..1c365de4 100755 --- a/test/pick/test-pick +++ b/test/pick/test-pick @@ -100,17 +100,13 @@ EOF check "$expected" "$actual" if test -w /dev/tty; then - if (printf '' >/dev/tty) 2>/dev/null; then + if printf '' >/dev/tty 2>/dev/null; then # Produce no standard output if no messages match and standard # output is a tty. To test that even when run with stdout # detached, write directly to /dev/tty. Can't capture the # output so hopefully the user will notice it. pick -subject message.3 -and -from Test4 >/dev/tty 2>/dev/null - else - echo "$0: skip tty test because can't write to /dev/tty" fi -else - echo "$0: skip tty test because can't write to /dev/tty" fi # Also, check that the exit status is 1.