| #!/bin/sh |
| # |
| # mailer-t1.sh: test #1 for the mailer.py script |
| # |
| # This test generates "email" for each revision in the repository, |
| # concatenating them into one big blob, which is then compared against |
| # a known output. |
| # |
| # Note: mailer-tweak.py must have been run to make the test outputs |
| # consistent and reproducible |
| # |
| # USAGE: ./mailer-t1.sh REPOS MAILER-SCRIPT |
| # |
| |
| if test "$#" != 2; then |
| echo "USAGE: ./mailer-t1.sh REPOS MAILER-SCRIPT" |
| exit 1 |
| fi |
| |
| glom=mailer-t1.current |
| rm -f $glom |
| |
| youngest="`svnlook youngest $1`" |
| for rev in `python -c "import string; print string.join(map(str, range(1,$youngest+1)))"`; do |
| $2 commit $1 $rev >> $glom |
| done |
| |
| echo "current mailer.py output in: $glom" |
| |
| echo diff -q mailer-t1.output $glom |
| diff -q mailer-t1.output $glom && echo "SUCCESS: no differences detected" |