X-Git-Url: http://git.shiar.net/barcat.git/blobdiff_plain/86e931f94517480cfec10e9f65a916cd7ebb2481..adba9a2e10287ce7704ea5a0651f8738b9c6a9ec:/t/regress.t diff --git a/t/regress.t b/t/regress.t index 1463ce3..f81cfd7 100755 --- a/t/regress.t +++ b/t/regress.t @@ -28,14 +28,15 @@ do if test -n "$regenerate" then - if test -e $file.out + if test -e $file.sh then - echo "ok $test_count # skip existing $file.out" + echo "ok $test_count # skip $file.out" continue fi $cmd >$file.out 2>&1 else - $cmd 2>&1 | $diffcmd "$file.out" - + if test -e $file.sh; then $cmd 2>&1 | ./$file.sh; fi && + if test -e $file.out; then $cmd 2>&1 | $diffcmd "$file.out" -; fi fi test 0 = $? || printf 'not '