From 843dc603e9b9862206461a59cb364153a9320f37 Mon Sep 17 00:00:00 2001 From: David Levine Date: Sat, 10 Mar 2012 10:44:30 -0600 Subject: [PATCH] Removed bash-ism from test-pick. --- test/pick/test-pick | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/pick/test-pick b/test/pick/test-pick index ba7c18b..8df115f 100755 --- a/test/pick/test-pick +++ b/test/pick/test-pick @@ -102,11 +102,10 @@ set +e if test -w /dev/tty; then # Produce no standard output if no messages match and standard - # output is a tty. To test that, move stderr to stdout and - # write the output directly to the tty. If there is output, - # it probably won't be captured, but pretend that it would be. - output=`pick -subject message.3 -and -from Test4 >&2- >/dev/tty` - run_test "echo $output" '' + # 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 -- 1.7.10.4