X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/c2ae9e650f0d3527d320ce00adb51f380f5ed6aa..79072f9d0f70f7d18447c46eb05525df92b2e49a:/t/regress.t diff --git a/t/regress.t b/t/regress.t index 734e42d..8f92ee7 100755 --- a/t/regress.t +++ b/t/regress.t @@ -34,8 +34,11 @@ do name="$(echo ${file#*-} | tr _ \ )" set -- barcat "$file.in" - case "$name" in *\ -*) set -- "$@" "-${name#* -}";; esac - case "$name" in *' |'*) set -- sh -c "\$0 \$1 $3" "$@";; esac + case "$name" in *\ -*) set -- "$@" -"${name#* -}";; esac + case "$name" in + *' |'*) set -- sh -c "\$0 \$1 $3" "$@";; + *) set -- "$1" "$2" $3 + esac if test -n "$regenerate" then @@ -45,8 +48,14 @@ do continue fi "$@" >$file.out 2>&1 + elif test -e "$file.out" + then + "$@" 2>&1 | diffcmd "$file.out" - else - if test -e $file.out; then "$@" 2>&1 | diffcmd "$file.out" -; fi + color 33 + echo "not ok $test_count - $name # TODO" + color 0 + continue fi if test 0 != $?