pick fix segfault
[mmh] / test / tests / pick / test-thread-without-msgid
1 #!/bin/sh
2 ######################################################
3 #
4 # Test that the -thread option works.
5 #
6 ######################################################
7
8 expected_err=$MH_TEST_DIR/$$.expected_err
9 expected_out=$MH_TEST_DIR/$$.expected_out
10 actual_err=$MH_TEST_DIR/$$.actual_err
11 actual_out=$MH_TEST_DIR/$$.actual_out
12
13 # All messages should be go to stdout
14 cat > $expected_out <<EOF
15 5
16 EOF
17 # Nothing should to go stderr
18 cat /dev/null > $expected_err
19
20 pick -thread 5 > $actual_out 2> $actual_err
21 diff -u $expected_err $actual_err
22 diff -u $expected_out $actual_out