git-svn: fix log with single revision against a non-HEAD branch
[git/dscho.git] / t / t5100-mailinfo.sh
blob9b1a74542a848ef702c1e6208d6ff2537b0f6ac0
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='git mailinfo and git mailsplit test'
8 . ./test-lib.sh
10 test_expect_success 'split sample box' \
11 'git mailsplit -o. ../t5100/sample.mbox >last &&
12 last=`cat last` &&
13 echo total is $last &&
14 test `cat last` = 8'
16 for mail in `echo 00*`
18 test_expect_success "mailinfo $mail" \
19 "git mailinfo -u msg$mail patch$mail <$mail >info$mail &&
20 echo msg &&
21 diff ../t5100/msg$mail msg$mail &&
22 echo patch &&
23 diff ../t5100/patch$mail patch$mail &&
24 echo info &&
25 diff ../t5100/info$mail info$mail"
26 done
28 test_done