X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/a0a83a5f49e737fb20e3d406ae78b8fc2fbca5f9..fc18ad68f85f29c016667b7bf54d7e4b2f3b42c5:/test/pick/test-pick diff --git a/test/pick/test-pick b/test/pick/test-pick index ce68325d..ea00b815 100755 --- a/test/pick/test-pick +++ b/test/pick/test-pick @@ -77,6 +77,7 @@ run_test 'pick -not -lbrace -subject NoMatch -and -subject message.3 -rbrace' \ 11' # Test MHPDEBUG. +# Don't use run_prog here because it loses the environment setting. MHPDEBUG=1 pick -not -lbrace -subject NoMatch -and -subject message.3 -rbrace \ >/dev/null 2>"$actual" cat >"$expected" <"$actual" 2>/dev/null` \ +echo \ + `run_prog pick -subject message.3 -and -from Test4 >"$actual" 2>/dev/null` \ >/dev/null cat >"$expected" </dev/tty; then +if test -t 1 && (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" + run_prog pick -subject message.3 -and -from Test4 >/dev/tty 2>/dev/null fi # Also, check that the exit status is 1. -pick -subject message.3 -and -from Test4 >/dev/null 2>&1 +run_prog pick -subject message.3 -and -from Test4 >/dev/null 2>&1 run_test "echo $?" '1' set -e @@ -137,7 +137,7 @@ run_test 'pick -to some -nolist' '11 hits' run_test 'pick -to user@example.com -nolist' '11 hits' # Test -after. -pick -after '28 Sep 2008 00:00:00' >"$actual" 2>&1 +run_prog pick -after '28 Sep 2008 00:00:00' >"$actual" 2>&1 cat >"$expected" <"$actual" 2>/dev/null +run_prog pick -after '29 Sep 2008 00:00:00' >"$actual" 2>/dev/null set -e cat >"$expected" <"$actual" 2>&1 +run_prog pick -before '29 Sep 2008 00:00:01' last:3 >"$actual" 2>&1 cat >"$expected" <"$actual" 2>&1 +run_prog pick -before '28 Sep 2008 00:00:00:' last:3 >"$actual" 2>&1 cat >"$expected" <"$actual" 2>/dev/null +run_prog pick -before '28 Sep 2006 00:00:00' last:3 >"$actual" 2>/dev/null set -e cat >"$expected" <"$actual" 2>/dev/null +run_prog pick -datefield date -after '29 Sep 2008 00:00:00' \ + >"$actual" 2>/dev/null set -e cat >"$expected" <"$actual" 2>&1 +run_prog pick -datefield delivery-date -after '29 Sep 2008 00:00:00' \ + >"$actual" 2>&1 cat >"$expected" <"$expected" -pick -subject 'multi-line header field' 12 >"$actual" 2>&1 +run_prog pick -subject 'multi-line header field' 12 >"$actual" 2>&1 check "$expected" "$actual" # Test MIME-encoded header. @@ -259,7 +261,9 @@ EOF echo 13 >"$expected" set +e -LC_CTYPE=en_US.UTF-8 pick -subject foobar 13 >"$actual" 2>&1 + +# Don't use run_prog here because it loses the environment setting. +LC_ALL=en_US.UTF-8 pick -subject foobar 13 >"$actual" 2>&1 set -e check "$expected" "$actual"