If ‘make check-release’ fails, then find all the test-suite.log files
containing the failures and print them in full.
./localconfigure
make V=1
- make check-release
+ if ! make check-release; then
+ for f in `find -name test-suite.log | xargs grep -l ^FAIL:`; do
+ echo \"*** $f ***\"
+ cat $f
+ done
+ exit 1
+ fi
" buildtmp version.tarball
version.package_version
(quote (libguestfs_localconfigure `Tarball))
./localconfigure
make V=1
- make check-release
+ if ! make check-release; then
+ for f in `find -name test-suite.log | xargs grep -l ^FAIL:`; do
+ echo \"*** $f ***\"
+ cat $f
+ done
+ exit 1
+ fi
" repodir
commit
(quote (libguestfs_localconfigure `Git))