From: Oleg Broytman Date: Wed, 19 Feb 2014 12:46:41 +0000 (+0400) Subject: Split main loop into test_file X-Git-Tag: v2.3.5~3 X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=commitdiff_plain;h=0d38385113a4e8093ff7fc11f3e11a5b12e5a820 Split main loop into test_file --- diff --git a/test/test_all b/test/test_all index 81b71ea..4124384 100755 --- a/test/test_all +++ b/test/test_all @@ -11,23 +11,27 @@ RC=0 test1() { ../mimedecode.py -H test -f utf-8 input/"$1" >tmp/"$1" || return 1 - if cmp -s expected/"$1" tmp/"$1"; then + if cmp -s expected/"$2" tmp/"$1"; then rm tmp/"$1" && return 0 || return 1 else - diff --text expected/"$1" tmp/"$1" >tmp/"$1".diff + diff --text expected/"$2" tmp/"$1" >tmp/"$1".diff return 1 fi } -for f in input/*.txt; do - n="`basename \"$f\"`" - echo -n "$n " - if test1 "$n"; then +test_file() { + echo -n "$2 " + if test1 "$1" "$2"; then echo "ok" else echo "fail" RC=1 fi +} + +for f in input/*.txt; do + n="`basename \"$f\"`" + test_file "$n" "$n" done if [ "$RC" -eq 0 ]; then