fix logic bug in getthreadid
[mmh] / test / tests / pick / test-thread
index 0397e11..0ac0eed 100644 (file)
@@ -5,21 +5,28 @@
 #
 ######################################################
 
-expected_err=$MH_TEST_DIR/$$.expected_err
-expected_out=$MH_TEST_DIR/$$.expected_out
-actual_err=$MH_TEST_DIR/$$.actual_err
-actual_out=$MH_TEST_DIR/$$.actual_out
+. "$MH_TEST_COMMON"
 
 # All messages should be go to stdout
-cp `mhpath 5` 5.old
 anno -component 'Message-Id' -text '<testid>' 5 -nodate
-cat > $expected_out <<EOF
+anno -component 'Message-Id' -text '<testid2>' 6 -nodate
+
+runandcheck 'pick -thread 5' <<!
 5
-EOF
-# Nothing should to go stderr
-cat /dev/null > $expected_err
+!
 
-pick -thread 5 > $actual_out 2> $actual_err
-mv 5.old `mhpath 5`
-diff -u $expected_err $actual_err
-diff -u $expected_out $actual_out
+anno -component 'References' -text '<testid>' 6 -nodate -append
+runandcheck 'pick -thread 5' <<!
+5
+6
+!
+runandcheck 'pick -thread 6' <<!
+5
+6
+!
+anno -delete -component 'References'
+anno -component 'References' -text '<testid>' 6 -nodate
+runandcheck 'pick -thread 6' <<!
+5
+6
+!